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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    overflow: hidden;
    background-color: #e8eaf6;
}

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

.cta-primary {
    background: white;
    color: #667eea;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.trust-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.trust-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

.trust-item p {
    font-size: 16px;
    color: #555;
}

.intro-split {
    display: flex;
    align-items: stretch;
}

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

.intro-image {
    flex: 1;
    overflow: hidden;
    background-color: #f1f3f5;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.services-section {
    padding: 80px 40px;
    background: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #777;
}

.services-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

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

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e7ff;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    padding: 0 25px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.btn-select {
    margin: 0 25px 25px;
    padding: 14px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #5568d3;
}

.form-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-section.hidden {
    display: none;
}

.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.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #555;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background: #5568d3;
}

.process-section {
    padding: 80px 40px;
    background: #2c3e50;
    color: white;
}

.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    opacity: 0.9;
}

.footer {
    background: #1a252f;
    color: #c8d0d8;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
}

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

.footer-column a:hover {
    color: white;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b0b8c0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #555;
}

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #667eea;
    color: white;
}

.btn-reject {
    background: #e0e0e0;
    color: #555;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

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

    .trust-grid,
    .process-steps,
    .footer-content {
        flex-direction: column;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}