@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --pearl-white: #FAF9F6;
    --charcoal-grey: #2C2C2C;
    --champagne-gold: #D4AF8F;
    --misty-slate: #9FA8A3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal-grey);
    background-color: var(--pearl-white);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--charcoal-grey);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--charcoal-grey);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--champagne-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header {
    background-color: var(--pearl-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 70px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal-grey);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--champagne-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--charcoal-grey);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

section {
    margin: 2rem 0;
}

.hero {
    margin-top: 0;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.75);
    animation: heroImageZoom 20s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(44, 44, 44, 0.3) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--pearl-white);
    max-width: 900px;
    padding: 3rem 2rem;
    animation: heroContentFadeIn 1.2s ease-out;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(212, 175, 143, 0.9);
    color: var(--pearl-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--pearl-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(250, 249, 246, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
    background-color: var(--champagne-gold);
    color: var(--pearl-white);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--charcoal-grey);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-secondary {
    background-color: rgba(250, 249, 246, 0.15);
    color: var(--pearl-white);
    border: 2px solid rgba(250, 249, 246, 0.8);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background-color: rgba(250, 249, 246, 0.95);
    color: var(--charcoal-grey);
    border-color: var(--pearl-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--champagne-gold);
    color: var(--pearl-white);
}

.btn-primary:hover {
    background-color: var(--charcoal-grey);
    color: var(--pearl-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--pearl-white);
    border: 2px solid var(--pearl-white);
}

.btn-secondary:hover {
    background-color: var(--pearl-white);
    color: var(--charcoal-grey);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-header {
    background: linear-gradient(135deg, var(--pearl-white) 0%, rgba(212, 175, 143, 0.05) 100%);
    padding: 5rem 0 4rem;
    margin-bottom: 4rem;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal-grey);
}

.page-header-content p {
    font-size: 1.25rem;
    color: var(--charcoal-grey);
    line-height: 1.8;
}

.services-section {
    padding: 4rem 0;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 44, 44, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 44, 44, 0.12);
}

.service-card-reverse {
    direction: rtl;
}

.service-card-reverse > * {
    direction: ltr;
}

.service-card-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(44, 44, 44, 0.15);
    aspect-ratio: 4/3;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 1rem;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(212, 175, 143, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-card-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal-grey);
    position: relative;
    padding-bottom: 1rem;
}

.service-card-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--champagne-gold);
    border-radius: 2px;
}

.service-card-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal-grey);
    margin-bottom: 1.25rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--charcoal-grey) 0%, rgba(44, 44, 44, 0.95) 100%);
    padding: 5rem 0;
    margin-top: 4rem;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--pearl-white);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--pearl-white);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(250, 249, 246, 0.9);
    line-height: 1.8;
}

.cta-content .btn {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.text-center {
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    position: sticky;
    top: 90px;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(44, 44, 44, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--charcoal-grey);
    position: relative;
    padding-bottom: 1rem;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--champagne-gold);
    border-radius: 2px;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-info {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(44, 44, 44, 0.1);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--charcoal-grey);
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--champagne-gold);
    border-radius: 2px;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.75rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 143, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-detail-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal-grey);
}

.contact-detail-item p {
    margin: 0;
    color: var(--charcoal-grey);
    line-height: 1.6;
}

.contact-detail-item a {
    color: var(--champagne-gold);
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--charcoal-grey);
}

.contact-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(44, 44, 44, 0.15);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-section {
    padding: 4rem 0;
}

.about-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 44, 44, 0.08);
}

.about-card-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(44, 44, 44, 0.15);
    aspect-ratio: 4/3;
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal-grey);
    position: relative;
    padding-bottom: 1rem;
}

.about-card-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--champagne-gold);
    border-radius: 2px;
}

.about-card-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal-grey);
    margin-bottom: 1.25rem;
}

.values-section {
    background: linear-gradient(135deg, rgba(212, 175, 143, 0.05) 0%, var(--pearl-white) 100%);
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: var(--charcoal-grey);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.value-card {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 44, 44, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 44, 44, 0.12);
}

.value-icon {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--champagne-gold);
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 143, 0.1);
    border-radius: 50%;
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--charcoal-grey);
}

.value-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal-grey);
}

.offer-section {
    padding: 5rem 0;
}

.offer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 44, 44, 0.08);
}

.offer-card-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal-grey);
    position: relative;
    padding-bottom: 1rem;
}

.offer-card-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--champagne-gold);
    border-radius: 2px;
}

.offer-card-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal-grey);
    margin-bottom: 1.25rem;
}

.offer-card-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(44, 44, 44, 0.15);
    aspect-ratio: 4/3;
}

.offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal-grey);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--misty-slate);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--champagne-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

footer {
    background-color: var(--charcoal-grey);
    color: var(--pearl-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--pearl-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--pearl-white);
    opacity: 0.9;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--champagne-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.privacy-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.privacy-links a {
    color: var(--pearl-white);
    opacity: 0.9;
    font-size: 0.9rem;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--charcoal-grey);
    color: var(--pearl-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.privacy-popup-text {
    flex: 1;
    min-width: 250px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
}

.privacy-popup-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.privacy-popup-btn.accept {
    background-color: var(--champagne-gold);
    color: var(--pearl-white);
}

.privacy-popup-btn.decline {
    background-color: transparent;
    color: var(--pearl-white);
    border: 2px solid var(--pearl-white);
}

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.legal-page {
    max-width: 900px;
    margin: 2rem auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.legal-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--pearl-white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    nav ul li {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: 500px;
        max-height: 700px;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .page-header {
        padding: 3rem 0 2.5rem;
        margin-bottom: 2rem;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header-content p {
        font-size: 1.125rem;
    }
    
    .services-section {
        padding: 2rem 0;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        padding: 2rem;
    }
    
    .service-card-reverse {
        direction: ltr;
    }
    
    .service-number {
        font-size: 4rem;
    }
    
    .service-card-content h2 {
        font-size: 1.75rem;
    }
    
    .service-card-content p {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 3rem 0;
        margin-top: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
    
    .cta-content .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        position: static;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .about-card,
    .offer-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .values-section {
        padding: 3rem 0;
    }
    
    .offer-section {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-popup-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .privacy-popup-buttons {
        flex-direction: column;
    }
    
    .privacy-popup-btn {
        width: 100%;
    }

    h1{
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero {
        min-height: 450px;
        max-height: 600px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

