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

:root {
    --primary: #2c5f7d;
    --secondary: #e8a445;
    --dark: #1a1a1a;
    --light: #f4f4f4;
    --white: #ffffff;
    --gray: #6b6b6b;
    --accent: #b85c38;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--gray);
    padding: 4px 10px;
    background: var(--light);
    border-radius: 4px;
    margin: 0 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 120%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    padding: 60px 0;
    margin-left: 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--gray);
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--light);
}

.asymmetric-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.offset-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: var(--white);
    box-shadow: -15px 15px 0 var(--secondary);
    margin-left: 50px;
    margin-top: 30px;
}

.offset-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.offset-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 15px -15px 0 var(--primary);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-left: 5px solid var(--primary);
    position: relative;
    transition: all 0.3s;
}

.service-card:nth-child(even) {
    margin-top: 40px;
    border-left: none;
    border-right: 5px solid var(--secondary);
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.price-note {
    font-size: 0.85rem;
    color: var(--gray);
}

.irregular-section {
    position: relative;
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    margin: 80px 0;
}

.irregular-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.overlap-container {
    position: relative;
    margin: 60px 0;
}

.overlap-box {
    background: var(--white);
    padding: 40px;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.overlap-box-left {
    margin-left: 10%;
}

.overlap-box-right {
    margin-left: auto;
    margin-right: 10%;
}

.overlap-box h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.form-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 50px;
    background: var(--white);
    box-shadow: 20px 20px 0 var(--light);
}

.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: 12px;
    border: 2px solid var(--light);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.split-section {
    display: flex;
    gap: 0;
    min-height: 500px;
}

.split-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.split-right {
    flex: 1;
    padding: 60px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
}

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

.cookie-banner.active {
    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-buttons {
    display: flex;
    gap: 15px;
}

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

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

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.cookie-reject:hover {
    background: var(--white);
    color: var(--dark);
}

.contact-info {
    background: var(--light);
    padding: 40px;
    margin: 40px 0;
    border-left: 5px solid var(--primary);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 50px;
}

.diagonal-section {
    position: relative;
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0;
    margin: 80px 0;
    transform: skewY(-3deg);
}

.diagonal-content {
    transform: skewY(3deg);
}

.stagger-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.stagger-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stagger-card:nth-child(odd) {
    margin-top: 40px;
}

.stagger-card h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

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

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

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

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

.disclaimer {
    background: rgba(44, 95, 125, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    margin: 40px 0;
    font-size: 0.9rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-bg {
        display: none;
    }

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

    .offset-content {
        margin-left: 0;
        margin-top: 0;
        box-shadow: -5px 5px 0 var(--secondary);
    }

    .offset-image img {
        box-shadow: 5px -5px 0 var(--primary);
    }

    .split-section {
        flex-direction: column;
    }

    .split-left {
        min-height: 300px;
    }

    .form-container {
        padding: 30px;
        box-shadow: 10px 10px 0 var(--light);
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
