* {
    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: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background: #357abd;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a90e2;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 90vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background: #f8f9fa;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta-primary {
    display: inline-block;
    background: #4a90e2;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background: #f0f2f5;
}

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

.intro-content {
    flex: 1;
    padding: 4rem;
}

.intro-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.capabilities-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    background: #1a1a1a;
    color: #ffffff;
}

.capabilities-content {
    flex: 1;
    padding: 4rem;
}

.capabilities-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.capability-list {
    list-style: none;
    margin-bottom: 2rem;
}

.capability-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.link-cta {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #357abd;
}

.capabilities-visual {
    flex: 1;
    background: #2c2c2c;
}

.capabilities-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-form-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.15rem;
    color: #4a4a4a;
}

.form-services-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.services-grid {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card.selected {
    border-color: #4a90e2;
    background: #e8f4ff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-card p {
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.select-service {
    background: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #357abd;
}

.service-card.selected .select-service {
    background: #27ae60;
}

.contact-form-container {
    flex: 1;
    position: sticky;
    top: 100px;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #357abd;
}

.btn-submit:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
    background: #f8f9fa;
}

.trust-content {
    flex: 1;
    padding: 4rem;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.trust-visual {
    flex: 1;
    background: #e0e3e7;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
}

.disclaimer-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #856404;
}

.disclaimer-content p {
    font-size: 1rem;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4a90e2;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .capabilities-split,
    .trust-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-content,
    .capabilities-content,
    .trust-content {
        padding: 3rem 2rem;
    }

    .hero-right,
    .intro-image,
    .capabilities-visual,
    .trust-visual {
        height: 400px;
    }

    .form-services-split {
        flex-direction: column;
    }

    .contact-form-container {
        position: static;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .intro-content h2,
    .capabilities-content h2,
    .trust-content h2 {
        font-size: 1.8rem;
    }

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