/* Base Styles & Variables */
:root {
    --primary-color: #c97b84;
    --primary-light: #f4dde0;
    --primary-dark: #a75661;
    --secondary-color: #4a4e69;
    --text-dark: #333333;
    --text-light: #767676;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --light-gray: #f2f2f2;
    --medium-gray: #e0e0e0;
    --dark-gray: #888888;
    --black: #222222;
    --success: #52b788;
    --error: #e76f51;
    --warning: #f4a261;
    --font-main: 'Lato', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --container-width: 1200px;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 10px base for easier rem calculations */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--black);
    transition: var(--transition);
}

h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover {
    color: var(--primary-color);
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
}

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

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

ul, ol {
    padding-left: 2rem;
    margin-bottom: 2rem;
}

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

button, .btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.6rem;
    padding: 1.2rem 2.4rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

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

.btn-lg {
    padding: 1.4rem 3rem;
    font-size: 1.8rem;
}

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

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

section {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    section {
        padding: 6rem 0;
    }
}

/* Layout Utilities */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 4rem;
}

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

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

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 6rem;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 3rem;
}

nav a {
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

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

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

nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.clock {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    nav ul {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .clock {
        margin-top: 1rem;
    }
}

/* Hero Section */
.hero {
    background-color: var(--primary-light);
    text-align: center;
    padding: 12rem 0;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 5.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* Post Grid Styles */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.post-card h3 {
    font-size: 2.2rem;
    margin: 1.5rem 0 1rem;
    padding: 0 2rem;
}

.post-card p {
    padding: 0 2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.read-more:hover::after {
    margin-left: 1rem;
}

.view-all {
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services-overview {
    background-color: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.service-icon svg {
    width: 4rem;
    height: 4rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonial-slider {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    padding: 2rem 0;
    scrollbar-width: none; /* For Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.testimonial {
    flex: 0 0 calc(50% - 1.5rem);
    background-color: var(--off-white);
    padding: 3rem;
    border-radius: var(--radius-md);
    position: relative;
}

.quote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: Georgia, serif;
}

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

.client img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.client-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.client-info p {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testimonial {
        flex: 0 0 100%;
    }
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    width: 12rem;
    margin-bottom: 1.5rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--medium-gray);
    transition: var(--transition);
}

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.footer-contact svg {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

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

.social-icons svg {
    width: 2rem;
    height: 2rem;
    color: var(--white);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

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

.footer-policies {
    display: flex;
    gap: 2rem;
}

.footer-policies a {
    color: var(--medium-gray);
    font-size: 1.4rem;
}

.footer-policies a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-policies {
        flex-direction: column;
        gap: 1rem;
    }
}

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

.page-header h1 {
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.8rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-posts {
    padding: 8rem 0;
}

.blog-posts .post-card {
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.post-content {
    padding: 2rem;
}

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

.post-content h2 {
    margin-top: 0;
}

/* Blog Post Styles */
.blog-post {
    padding: 6rem 0;
}

.post-header {
    margin-bottom: 4rem;
}

.post-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.post-author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.author-info .author-name {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.author-info .author-title {
    color: var(--text-light);
    font-size: 1.5rem;
}

.post-featured-image {
    margin-bottom: 4rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.post-content h2, .post-content h3 {
    margin-top: 4rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 3rem;
}

.post-content li {
    margin-bottom: 1rem;
}

.post-image-inline {
    margin: 3rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 4rem 0;
    align-items: center;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    background-color: var(--light-gray);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.post-share span {
    font-weight: 600;
}

.share-icons {
    display: flex;
    gap: 1rem;
}

.share-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--light-gray);
    border-radius: 50%;
    transition: var(--transition);
}

.share-icons svg {
    width: 2rem;
    height: 2rem;
    color: var(--text-dark);
}

.share-icons a:hover {
    background-color: var(--primary-color);
}

.share-icons a:hover svg {
    color: var(--white);
}

.related-posts {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--medium-gray);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.related-post h4 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

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

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

.services-list {
    padding-top: 6rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) .service-details,
.service-item:nth-child(even) .service-image {
    direction: ltr;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.service-details h2 {
    margin-bottom: 2rem;
}

.service-details h3 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
}

.service-details ul {
    margin-bottom: 3rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--radius-sm);
}

.service-pricing p {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.service-pricing span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.2rem;
}

.service-packages {
    background-color: var(--off-white);
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.package-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

.package-tag {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.4rem;
}

.package-card h3 {
    margin-top: 1rem;
}

.package-price {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0;
}

.package-card ul {
    text-align: left;
    margin-bottom: 3rem;
}

.package-save {
    font-weight: 600;
    color: var(--success);
    margin-bottom: 2rem;
}

.cta-section {
    background-color: var(--primary-light);
    text-align: center;
}

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

.cta-content h2 {
    margin-bottom: 2rem;
}

.cta-content p {
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

@media (max-width: 992px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-item:nth-child(even) {
        direction: ltr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission, .values {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.values ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values li {
    margin-bottom: 2.5rem;
}

.values li:last-child {
    margin-bottom: 0;
}

.values h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.team-section {
    background-color: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--light-gray);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links svg {
    width: 1.8rem;
    height: 1.8rem;
    color: var(--text-dark);
}

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

.social-links a:hover svg {
    color: var(--white);
}

.about-testimonials {
    padding-top: 0;
}

@media (max-width: 992px) {
    .about-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 4rem;
}

.info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item .icon {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-item svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
}

.info-item h3 {
    margin-bottom: 1rem;
}

.info-item p, .info-item address {
    margin-bottom: 0;
    font-style: normal;
}

.social-contact {
    margin-top: 4rem;
}

.contact-form-container {
    background-color: var(--white);
    padding: 4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

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

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

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.4rem;
}

.map-container {
    height: 400px;
    margin-top: 4rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.modal.active {
    display: flex;
}

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

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.thank-you-message {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkmark {
    width: 8rem;
    height: 8rem;
    margin-bottom: 2rem;
}

.checkmark-circle {
    stroke: var(--success);
    stroke-width: 2;
    opacity: 0;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: var(--success);
    stroke-width: 2;
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

.close-btn {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}

.cookie-notice.active {
    display: block;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 2rem;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-content a {
    font-size: 1.4rem;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}
