/* Base Styles */
:root {
    --primary-color: #9c7c38;
    --primary-light: #d4b978;
    --primary-dark: #614e25;
    --secondary-color: #4a6670;
    --secondary-light: #7c98a3;
    --secondary-dark: #2b3c43;
    --accent-color: #d45f58;
    --light-bg: #f8f7f5;
    --dark-bg: #333333;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #e9e9e7;
    --medium-gray: #c4c4c4;
    --dark-gray: #686868;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--dark-bg);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-customize {
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--medium-gray);
}

.btn-decline {
    background-color: var(--light-gray);
    color: var(--text-color);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 100%;
}

/* Featured Posts Section */
.featured-posts {
    padding: 80px 0;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.post-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover:after {
    margin-left: 10px;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Styling Comparison Section */
.styling-comparison {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.styling-comparison h2 {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(156, 124, 56, 0.05);
}

.comparison-table tr:hover {
    background-color: rgba(156, 124, 56, 0.1);
}

/* Beginners Guide Section */
.beginners-guide {
    padding: 80px 0;
}

.beginners-guide .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.beginners-content {
    flex: 1;
    padding-right: 50px;
}

.beginners-content h2 {
    margin-bottom: 20px;
}

.beginners-content p {
    margin-bottom: 30px;
}

.beginners-list {
    margin-bottom: 30px;
}

.beginners-list li {
    display: flex;
    margin-bottom: 20px;
}

.beginners-list .icon {
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.beginners-list .content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.beginners-image {
    flex: 1;
    text-align: right;
}

.beginners-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    min-width: 300px;
    flex: 1;
}

.testimonial .quote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-light);
}

.testimonial .client {
    display: flex;
    align-items: center;
}

.testimonial .client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial .client-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial .client-info p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after,
.footer-legal h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: var(--primary-light);
}

.footer-contact address {
    font-style: normal;
}

.footer-contact address p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact address p svg {
    margin-right: 10px;
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookie-buttons button {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-policy-link {
    margin-left: 15px;
    font-size: 0.9rem;
}

/* Blog Page Styles */
.page-header {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.blog-posts {
    padding: 80px 0;
}

.blog-posts .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.post-card.large {
    grid-column: span 2;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.category {
    color: var(--primary-color);
    font-weight: 600;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--dark-bg);
}

.newsletter-form button:hover {
    background-color: var(--secondary-dark);
}

/* Blog Post Page Styles */
.blog-post {
    padding: 60px 0;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.post-content h2,
.post-content h3 {
    margin-top: 40px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content ul li,
.post-content ol li {
    margin-bottom: 10px;
}

.content-image {
    margin: 30px 0;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.content-image.right {
    float: right;
    margin-left: 30px;
    max-width: 40%;
}

.content-image.left {
    float: left;
    margin-right: 30px;
    max-width: 40%;
}

.content-image img {
    width: 100%;
}

.caption {
    padding: 10px;
    background-color: var(--light-bg);
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

.conclusion {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.author-box {
    margin-top: 50px;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 5px;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.prev-post,
.next-post {
    max-width: 45%;
}

.prev-post a,
.next-post a {
    display: flex;
    flex-direction: column;
}

.nav-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.post-title {
    font-weight: 600;
}

.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.related-post {
    display: block;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 0;
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
}

.about-intro .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1.2;
}

.about-image {
    flex: 0.8;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.values {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.values h2 {
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-card .icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3,
.team-member p {
    padding: 0 20px;
}

.team-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .social-links {
    margin: 20px;
    justify-content: flex-start;
}

.team-member .social-links a {
    width: 30px;
    height: 30px;
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.credentials {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.credentials h2 {
    text-align: center;
    margin-bottom: 30px;
}

.credentials-content {
    max-width: 800px;
    margin: 0 auto;
}

.credentials-list {
    margin: 20px 0;
    columns: 2;
    padding-left: 20px;
}

.credentials-list li {
    margin-bottom: 10px;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--light-gray);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Services Page Styles */
.services-intro {
    padding: 60px 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 20px;
}

.services-grid {
    padding: 40px 0 80px;
}

.service-card {
    display: flex;
    margin-bottom: 80px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-card.reversed {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1.5;
    padding: 40px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 20px;
}

.service-content h4 {
    margin: 30px 0 15px;
}

.service-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.service-content ul li:before {
    content: '•';
    position: absolute;
    left: -5px;
    color: var(--primary-color);
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.detail {
    flex: 1;
    min-width: 150px;
}

.detail .label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.detail .value {
    display: block;
    color: var(--text-light);
}

.specialized-services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.specialized-services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.specialized-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.specialized-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.specialized-card .icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process {
    padding: 80px 0;
}

.process h2 {
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    position: relative;
    padding-left: 60px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.pricing-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-tier {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-tier.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-tier.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-tier h3 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.pricing-tier p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-tier ul {
    margin-bottom: 20px;
}

.pricing-tier ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-tier ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.tier-note {
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
}

.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 0;
}

.contact-faq {
    background-color: var(--light-bg);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.contact-method .icon {
    flex-shrink: 0;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-details h3 {
    margin-bottom: 5px;
}

.method-details p {
    margin-bottom: 10px;
}

.method-details a {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.hours {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.social-contact h3 {
    margin-bottom: 10px;
}

.social-contact p {
    margin-bottom: 20px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form-container h2 {
    margin-bottom: 10px;
}

.contact-form-container > p {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    width: calc(50% - 10px);
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-weight: normal !important;
}

.checkbox-label input {
    width: auto !important;
    margin-right: 10px;
    margin-top: 5px;
}

.map-section {
    padding: 40px 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    height: 450px;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    border: none;
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.detail {
    flex: 1;
    min-width: 250px;
}

.detail h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container,
    .beginners-guide .container,
    .about-intro .container {
        flex-direction: column;
    }
    
    .hero-content,
    .beginners-content,
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .content-image.right,
    .content-image.left {
        float: none;
        margin: 30px 0;
        max-width: 100%;
    }
    
    .service-card,
    .service-card.reversed {
        flex-direction: column;
    }
    
    .service-image {
        min-height: 300px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .post-card.large {
        grid-column: span 1;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo,
    .footer-links,
    .footer-legal,
    .footer-contact {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .social-links {
        margin-bottom: 20px;
    }
    
    .copyright {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin-bottom: 10px;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .prev-post,
    .next-post {
        max-width: 100%;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method .icon {
        margin: 0 auto 15px;
    }
    
    .form-group {
        width: 100%;
    }
}
