*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #faf8f5;
    color: #1a1a1a;
}



a {
    color: #4a8a6f;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: #6bb591;
}



.btn-accent {
    background: linear-gradient(135deg, #2c5f4e, #4a8a6f);
    border: none;
    color: #ffffff;
    font-weight: 600;
    padding: 0.65rem 1.8rem;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(44, 95, 78, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-accent:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(74, 138, 111, 0.45);
    color: #ffffff;
}

.btn-accent:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(44, 95, 78, 0.3);
}



header .navbar {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 30px rgba(26, 26, 26, 0.55);
}

.navbar-brand {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar-logo {
    height: 44px;
    width: 44px;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(107, 181, 145, 0.4));
}

.brand-text {
    display: inline-block;
}

.nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f5f5f5 !important;
    opacity: 0.85;
    padding: 0.5rem 0.9rem !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.15rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2c5f4e, #6bb591);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border-color: rgba(74, 138, 111, 0.5);
}



.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f5;
    overflow: hidden;
    background: radial-gradient(circle at top left, #2a2a2a 0, #1a1a1a 45%, #0a0a0a 100%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(0.9) contrast(1.1);
    z-index: 1;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 3vw, 2.9rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto;
    color: #e8e8e8;
    line-height: 1.7;
}



.section-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.section-header p {
    color: #4a4a4a;
    max-width: 680px;
    margin: 0.3rem auto 0;
}

.section-header.text-center h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}

.section-header.text-center h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.15rem;
    transform: translateX(-50%);
    width: 82px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2c5f4e, #6bb591);
}



section {
    position: relative;
}

.section-bg {
    background: #1a1a1a;
    color: #f5f5f5;
}

.section-bg .section-header h2 {
    color: #f5f5f5;
}

.section-bg .section-header p {
    color: #d0d0d0;
}



.benefit-item {
    padding: 1.1rem 0.2rem;
}

.benefit-icon {
    font-size: 2.3rem;
    margin-right: 0.8rem;
    color: #6bb591;
    background: rgba(107, 181, 145, 0.12);
    border-radius: 18px;
    padding: 0.4rem;
}

.benefit-item h5 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.92rem;
    color: #4a4a4a;
}

.section-bg .benefit-item p {
    color: #d0d0d0;
}



.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 14px 35px rgba(26, 26, 26, 0.1);
    border: 1px solid rgba(107, 181, 145, 0.2);
}

.section-bg .stat-card {
    background: rgba(10, 10, 10, 0.6);
    border-color: rgba(107, 181, 145, 0.35);
}

.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c5f4e, #6bb591);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.95rem;
    color: #4a4a4a;
}

.section-bg .stat-text {
    color: #e8e8e8;
}



.article-content h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.article-content p {
    font-size: 0.96rem;
    color: #333333;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.section-bg .article-content p {
    color: #d0d0d0;
}



.contact-form .form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
}

.section-bg .contact-form .form-label {
    color: #f5f5f5;
}

.contact-form .form-control {
    border-radius: 12px;
    border: 1px solid rgba(74, 138, 111, 0.4);
    padding: 0.65rem 0.8rem;
    font-size: 0.95rem;
    background: #ffffff;
}

.section-bg .contact-form .form-control {
    background: rgba(10, 10, 10, 0.7);
    color: #f5f5f5;
    border-color: rgba(107, 181, 145, 0.5);
}

.contact-form .form-control:focus {
    border-color: #6bb591;
    box-shadow: 0 0 0 3px rgba(107, 181, 145, 0.25);
}



.contact-info {
    font-size: 0.96rem;
    color: #333333;
}

.section-bg .contact-info {
    color: #e8e8e8;
}

.contact-email {
    color: #4a8a6f;
}

.contact-email:hover {
    color: #6bb591;
}



.thank-you-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: radial-gradient(circle at top, #2a2a2a 0, #1a1a1a 45%, #0a0a0a 100%);
}

.thank-you-card {
    background: rgba(26, 26, 26, 0.96);
    color: #f5f5f5;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(107, 181, 145, 0.4);
    box-shadow: 0 24px 60px rgba(10, 10, 10, 0.9);
    position: relative;
    overflow: hidden;
}

.thank-you-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    opacity: 0.09;
    background: radial-gradient(circle at top left, #6bb591 0, transparent 45%),
        radial-gradient(circle at bottom right, #2c5f4e 0, transparent 55%);
    pointer-events: none;
}

.thank-you-icon {
    position: relative;
    display: inline-flex;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #6bb591, #2c5f4e);
    box-shadow: 0 18px 40px rgba(107, 181, 145, 0.45);
}

.thank-you-icon .material-icons-outlined {
    font-size: 2.1rem;
    color: #0a0a0a;
}

.thank-you-title {
    position: relative;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thank-you-message {
    position: relative;
    font-size: 1.05rem;
    color: #d0d0d0;
    margin-bottom: 0.9rem;
}

.thank-you-submessage {
    position: relative;
    font-size: 0.96rem;
    color: #a8a8a8;
    max-width: 640px;
    margin: 0 auto;
}

.thank-you-actions {
    position: relative;
}



.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #f5f5f5;
    padding: 0.85rem 0;
    font-size: 0.92rem;
    z-index: 1200;
    box-shadow: 0 -10px 30px rgba(10, 10, 10, 0.85);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner p {
    margin-bottom: 0;
    color: #d0d0d0;
}

.cookie-banner a {
    color: #6bb591;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #8ec9aa;
}



footer {
    font-size: 0.92rem;
}

footer h5,
footer h6 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 600;
}

footer p {
    color: #d0d0d0;
}

footer a.text-light {
    opacity: 0.85;
}

footer a.text-light:hover {
    opacity: 1;
}

.footer-logo {
    height: 38px;
    width: 38px;
    filter: drop-shadow(0 2px 4px rgba(107, 181, 145, 0.2));
}



img.img-fluid {
    border-radius: 18px;
}



/* Property Cards */
.property-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(44, 95, 78, 0.15);
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #2c5f4e, #4a8a6f);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(44, 95, 78, 0.3);
}

.property-badge.badge-new {
    background: linear-gradient(135deg, #d4af37, #f4e5c2);
    color: #1a1a1a;
}

.property-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #4a8a6f;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.property-location .material-icons-outlined {
    font-size: 1.1rem;
}

.property-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.property-description {
    font-size: 0.92rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #666;
}

.property-features .material-icons-outlined {
    font-size: 1.1rem;
    color: #4a8a6f;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e8;
}

.property-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5f4e;
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-weight: 600;
    padding: 0.65rem 1.8rem;
    border-radius: 999px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #2c5f4e;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .material-icons-outlined {
    font-size: 1.2rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #2c5f4e, #4a8a6f);
    color: #ffffff;
    padding: 3.5rem 2rem;
    border-radius: 24px;
    margin-top: 2rem;
    box-shadow: 0 16px 40px rgba(44, 95, 78, 0.25);
}

.cta-banner h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.cta-banner .btn {
    background: #ffffff;
    color: #2c5f4e;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

/* Image Enhancements */
.service-image {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-image:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(44, 95, 78, 0.2);
}

.shadow-lg {
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.15) !important;
}

img.rounded {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

img.rounded:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(44, 95, 78, 0.2);
}

/* Enhanced Hero Section */
.hero-section {
    min-height: 600px;
}

.hero-bg {
    filter: brightness(0.7) saturate(1.1);
}

/* Button Icons */
.btn .material-icons-outlined {
    vertical-align: middle;
}

/* Region Cards */
.region-card {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 95, 78, 0.25);
}

.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.region-card:hover img {
    transform: scale(1.15);
    filter: brightness(0.75);
}

.region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #ffffff;
    transition: background 0.4s ease;
}

.region-card:hover .region-overlay {
    background: linear-gradient(to top, rgba(44, 95, 78, 0.95) 0%, rgba(44, 95, 78, 0.6) 60%, transparent 100%);
}

.region-overlay h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.region-card:hover .region-overlay h3 {
    transform: translateY(-8px);
}

.region-overlay p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    opacity: 0.95;
}

.region-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Testimonials */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(44, 95, 78, 0.15);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating .material-icons {
    font-size: 1.2rem;
    color: #f4c430;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6bb591;
}

.testimonial-author div {
    flex: 1;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #666;
}

/* FAQ Accordion */
.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(107, 181, 145, 0.2);
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05);
    color: #f5f5f5;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.5rem;
    border: none;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    background: rgba(107, 181, 145, 0.15);
    color: #6bb591;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236bb591'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f5f5f5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button .material-icons-outlined {
    font-size: 1.4rem;
    color: #6bb591;
}

.accordion-body {
    background: rgba(0, 0, 0, 0.2);
    color: #e8e8e8;
    padding: 1.5rem;
    font-size: 0.98rem;
    line-height: 1.7;
    border-top: 1px solid rgba(107, 181, 145, 0.2);
}

/* Enhanced Contact Form */
.contact-form-wrapper {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(107, 181, 145, 0.2);
}

.contact-info-box {
    padding: 1.5rem;
    background: rgba(107, 181, 145, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    background: rgba(107, 181, 145, 0.2);
    transform: translateY(-5px);
}

.contact-info-box .material-icons-outlined {
    font-size: 2.5rem;
    color: #6bb591;
    margin-bottom: 0.8rem;
}

.contact-info-box h5 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
}

.contact-info-box a,
.contact-info-box p {
    color: #d0d0d0;
    font-size: 0.95rem;
    text-decoration: none;
    margin: 0;
}

.contact-info-box a:hover {
    color: #6bb591;
}

.contact-form .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.contact-form .form-label .material-icons-outlined {
    font-size: 1.2rem;
    color: #6bb591;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-privacy-note {
    font-size: 0.85rem;
    color: #a8a8a8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-privacy-note .material-icons-outlined {
    font-size: 1rem;
}

.form-privacy-note a {
    color: #6bb591;
    text-decoration: underline;
}

/* Responsive property cards */
@media (max-width: 991.98px) {
    .property-card {
        margin-bottom: 1.5rem;
    }
    
    .property-image {
        height: 220px;
    }
    
    .hero-section {
        min-height: 500px;
    }
}

@media (max-width: 767.98px) {
    .property-image {
        height: 200px;
    }
    
    .property-title {
        font-size: 1.2rem;
    }
    
    .property-price {
        font-size: 1.4rem;
    }
    
    .cta-banner {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-banner h3 {
        font-size: 1.5rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}



@media (max-width: 991.98px) {
    body {
        padding-top: 64px;
    }

    .hero-overlay {
        padding: 4.2rem 0 3rem;
    }

    .thank-you-card {
        padding: 2.4rem 1.7rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .thank-you-card {
        padding: 2rem 1.4rem;
    }

    .thank-you-section {
        padding: 5rem 0 3rem;
    }
}

.content-section {
    color: #1a1a1a;
}

.content-section h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.content-section p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1rem;
}
