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

:root {
    --primary: #2d4059;
    --secondary: #ea5455;
    --accent: #f07b3f;
    --light: #ffd460;
    --bg: #fafafa;
    --text: #2d3436;
    --gray: #636e72;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

.nav-container {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1000;
    display: flex;
    gap: 25px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.nav-container a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-container a:hover {
    color: var(--secondary);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--gray);
    border-left: 2px solid var(--light);
    padding-left: 15px;
    font-style: italic;
}

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 80px 0 60px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 60px;
}

.hero-text {
    flex: 0 0 55%;
    background: white;
    padding: 70px 60px;
    border-radius: 0 80px 0 0;
    position: relative;
    z-index: 2;
    box-shadow: -10px -10px 40px rgba(0,0,0,0.08);
}

.hero-text h1 {
    font-size: 58px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text p {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 40px;
}

.hero-image-container {
    flex: 0 0 40%;
    height: 520px;
    position: relative;
    margin-top: -80px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 100px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 84, 85, 0.3);
}

.services-grid {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1) {
    flex: 0 0 calc(60% - 20px);
}

.service-card:nth-child(2) {
    flex: 0 0 calc(40% - 20px);
    margin-top: 60px;
}

.service-card:nth-child(3) {
    flex: 0 0 calc(45% - 20px);
}

.service-card:nth-child(4) {
    flex: 0 0 calc(55% - 20px);
    margin-top: -40px;
}

.service-card:nth-child(5) {
    flex: 0 0 calc(50% - 20px);
    margin-top: 40px;
}

.service-card:nth-child(6) {
    flex: 0 0 calc(50% - 20px);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 280px;
    background: var(--light);
}

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

.service-content {
    padding: 35px 30px;
}

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

.service-content p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-price span {
    font-size: 16px;
    color: var(--gray);
    font-weight: 400;
}

.about-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.about-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image {
    flex: 0 0 45%;
    height: 600px;
    background: var(--light);
    border-radius: 0 120px 0 120px;
    overflow: hidden;
    position: relative;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 35px;
    line-height: 1.2;
}

.about-text p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 25px;
}

.form-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 70px 60px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.form-section h2 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 0 0 35%;
    background: var(--primary);
    color: white;
    padding: 60px 45px;
    border-radius: 30px;
    align-self: flex-start;
    margin-top: 80px;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 18px;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    height: 550px;
    background: var(--light);
    border-radius: 0 80px 0 80px;
    overflow: hidden;
}

.legal-page {
    max-width: 900px;
    margin: 150px auto 100px;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 32px;
    color: var(--primary);
    margin-top: 50px;
    margin-bottom: 25px;
}

.legal-page h3 {
    font-size: 24px;
    color: var(--primary);
    margin-top: 35px;
    margin-bottom: 20px;
}

.legal-page p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    color: var(--gray);
}

.legal-page ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer {
    background: var(--primary);
    color: white;
    padding: 80px 40px 40px;
    margin-top: 120px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 15px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
}

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid var(--accent);
    padding: 30px;
    margin: 60px 0;
    border-radius: 8px;
}

.disclaimer-box p {
    color: #856404;
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 30px 40px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: var(--accent);
}

.cookie-reject {
    background: #e8e8e8;
    color: var(--text);
}

.cookie-reject:hover {
    background: #d0d0d0;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.thanks-content {
    max-width: 700px;
    background: white;
    padding: 80px 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: white;
}

.offset-container {
    position: relative;
}

.floating-element {
    position: absolute;
    background: var(--accent);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        flex: 1;
    }

    .hero-image-container {
        flex: 1;
        width: 100%;
        margin-top: 40px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 !important;
        margin-top: 0 !important;
    }

    .about-layout {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        right: 20px;
        top: 20px;
        padding: 15px 20px;
        gap: 15px;
    }

    .nav-container a {
        font-size: 12px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .form-section {
        padding: 40px 30px;
    }

    .cookie-content {
        flex-direction: column;
    }
}
