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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fafbfc;
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #2c5f8d;
}

.hero-asymmetric {
    display: flex;
    min-height: 75vh;
    position: relative;
    overflow: hidden;
}

.hero-left {
    width: 42%;
    background: linear-gradient(135deg, #1e3c72 0%, #2c5f8d 100%);
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-left::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 0;
    bottom: 0;
    width: 100px;
    background: inherit;
    transform: skewX(-8deg);
}

.hero-right {
    width: 58%;
    background: url('https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?w=1200') center/cover;
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 95, 141, 0.15);
}

.hero-left h1 {
    font-size: 52px;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-left p {
    font-size: 19px;
    color: #e8f1f8;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    background: #f39c12;
    color: #ffffff;
    padding: 16px 38px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cta-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.offset-section {
    display: flex;
    margin: 90px 6% 70px;
    gap: 60px;
    align-items: flex-start;
}

.offset-content {
    width: 55%;
    padding-top: 40px;
}

.offset-sidebar {
    width: 45%;
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.offset-content h2 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.offset-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.feature-list li {
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 16px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    background: #2c5f8d;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 14px;
}

.staggered-grid {
    display: flex;
    gap: 40px;
    margin: 80px 6%;
    flex-wrap: wrap;
}

.stagger-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
}

.stagger-card:nth-child(2) {
    margin-top: 60px;
}

.stagger-card:nth-child(3) {
    margin-top: 30px;
}

.stagger-card h3 {
    font-size: 26px;
    color: #2c5f8d;
    margin-bottom: 18px;
    font-weight: 700;
}

.stagger-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.diagonal-split {
    display: flex;
    min-height: 500px;
    position: relative;
    margin: 90px 0;
}

.diagonal-left {
    width: 50%;
    background: #f7fafc;
    padding: 70px 6% 70px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.diagonal-right {
    width: 50%;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=900') center/cover;
    position: relative;
}

.diagonal-left h2 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.diagonal-left p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2c5f8d;
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 25px rgba(44, 95, 141, 0.4);
    z-index: 99;
    transition: all 0.3s;
}

.floating-cta:hover {
    background: #1e3c72;
    transform: scale(1.05);
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin: 70px 6%;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 24px;
    color: #2c5f8d;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    color: #f39c12;
    font-weight: 800;
    margin: 20px 0;
}

.service-price span {
    font-size: 16px;
    color: #718096;
    font-weight: 400;
}

.form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 6%;
    margin: 90px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    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: #667eea;
}

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

.submit-btn {
    width: 100%;
    background: #f39c12;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e67e22;
}

.content-section {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 6%;
}

.content-section h1 {
    font-size: 44px;
    color: #1a202c;
    margin-bottom: 30px;
    font-weight: 700;
}

.content-section h2 {
    font-size: 32px;
    color: #2c5f8d;
    margin: 40px 0 20px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    color: #2d3748;
    margin: 30px 0 15px;
    font-weight: 600;
}

.content-section p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.8;
}

.content-section ul {
    margin: 20px 0 20px 25px;
}

.content-section li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4a5568;
}

footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 6% 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-col a:hover {
    color: #f39c12;
}

.footer-col p {
    color: #cbd5e0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: white;
    padding: 25px 6%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-banner p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #48bb78;
    color: white;
}

.cookie-accept:hover {
    background: #38a169;
}

.cookie-reject {
    background: #718096;
    color: white;
}

.cookie-reject:hover {
    background: #4a5568;
}

.contact-info {
    background: white;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 18px;
    color: #2c5f8d;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
    margin: 100px auto;
    padding: 60px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c5f8d;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-container .cta-primary {
    margin-top: 30px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #2c5f8d;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        transition: left 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 30px;
        gap: 0;
    }

    nav li {
        padding: 15px 0;
        border-bottom: 1px solid #e2e8f0;
    }

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

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left::after {
        display: none;
    }

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

    .offset-content,
    .offset-sidebar {
        width: 100%;
    }

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

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

    .diagonal-left,
    .diagonal-right {
        width: 100%;
        clip-path: none;
    }

    .diagonal-right {
        min-height: 300px;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 14px 24px;
        font-size: 14px;
    }

    .cookie-banner.active {
        flex-direction: column;
        align-items: stretch;
    }

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

.disclaimer-box {
    background: #fff3cd;
    border-left: 4px solid #f39c12;
    padding: 25px;
    margin: 40px 0;
    border-radius: 6px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    margin-bottom: 10px;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}
