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

:root {
    --primary: #1a472a;
    --secondary: #2d7a4f;
    --accent: #f4a261;
    --dark: #0d1f14;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--gray);
    padding: 4px 12px;
    background: #fff3cd;
    border-radius: 4px;
    margin: 0 15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 2;
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: var(--dark);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-left h1 {
    font-size: 3.2rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 35px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 16px 42px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.cta-primary:hover {
    background: #e76f51;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244,162,97,0.4);
}

.offset-section {
    display: flex;
    margin: 120px 0;
    gap: 60px;
    align-items: flex-start;
}

.offset-content {
    flex: 1.3;
    padding-top: 40px;
}

.offset-visual {
    flex: 1;
    position: relative;
    margin-top: -80px;
}

.offset-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    height: 450px;
    background-color: var(--gray);
}

.offset-content h2 {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 28px;
    line-height: 1.3;
}

.offset-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin: 100px 0;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1) {
    flex: 1 1 100%;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
    flex: 1 1 calc(50% - 18px);
}

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

.service-card:nth-child(5) {
    flex: 1 1 calc(40% - 18px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--secondary);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-top: 15px;
}

.form-section-offset {
    background: var(--primary);
    padding: 90px 0;
    position: relative;
    margin: 100px 0 0 0;
}

.form-wrapper {
    display: flex;
    gap: 70px;
    align-items: center;
}

.form-intro {
    flex: 1;
    color: var(--white);
}

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.form-container {
    flex: 1.2;
    background: var(--white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

footer {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    padding: 70px 0 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 31, 20, 0.97);
    color: var(--white);
    padding: 25px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}

.cookie-accept:hover {
    background: #e76f51;
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

.testimonial-offset {
    background: var(--white);
    padding: 80px 0;
    margin: 100px 0;
}

.testimonial-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.testimonial-item {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-left: 5px solid var(--accent);
    border-radius: 6px;
    position: relative;
}

.testimonial-item p {
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    font-style: normal;
}

.contact-page-layout {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-item p {
    color: var(--gray);
    font-size: 1.05rem;
}

.contact-map {
    flex: 1;
    background-color: var(--secondary);
    min-height: 400px;
    border-radius: 8px;
}

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

.legal-page h1 {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.legal-page h2 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #2c3e50;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-box {
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 600px;
}

.thanks-box h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

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

.disclaimer h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.disclaimer p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.about-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 100px 0 80px;
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-content-section {
    padding: 80px 0;
}

.about-flex {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-flex:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    object-fit: cover;
    height: 350px;
    background-color: var(--secondary);
}

.services-page-header {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.services-page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.services-page-content {
    padding: 80px 0;
}

.email-display {
    color: var(--gray);
    cursor: text;
}

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

    .hero-right {
        clip-path: none;
        min-height: 400px;
    }

    .offset-section,
    .form-wrapper,
    .contact-split,
    .about-flex {
        flex-direction: column;
    }

    .offset-visual {
        margin-top: 0;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        flex: 1 1 100%;
    }

    nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }
}
