* {
    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-color: #ffffff;
}

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

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

.main-header {
    background-color: #1a365d;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #60a5fa;
}

.hero-section {
    display: flex;
    min-height: 600px;
    align-items: center;
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 22px;
    color: #e0e7ff;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    height: 600px;
    background-color: #1e3a5f;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a365d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.intro-cards {
    padding: 80px 0;
    background-color: #f8fafc;
}

.card-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.info-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    color: #2563eb;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a365d;
}

.info-card p {
    color: #64748b;
    line-height: 1.7;
}

.services-overview {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 20px;
    color: #64748b;
}

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

.service-card {
    flex: 0 0 calc(50% - 15px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 280px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 15px;
}

.service-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px 30px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1d4ed8;
}

.process-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f1f5f9, #ffffff);
}

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

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

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

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 20px;
    opacity: 0.3;
}

.process-step h4 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 12px;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background-color: #1a365d;
}

.cta-card {
    text-align: center;
    padding: 60px 40px;
}

.cta-card h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 20px;
    color: #e0e7ff;
    margin-bottom: 35px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a365d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #f1f5f9;
}

.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    line-height: 1.7;
    color: #94a3b8;
}

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

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

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

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

.disclaimer {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 40px;
}

.footer-bottom p:last-child {
    color: #64748b;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 30px 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 20px;
    color: #1a365d;
    margin-bottom: 10px;
}

.cookie-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-content a {
    color: #2563eb;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1d4ed8;
}

.cookie-btn.reject {
    background-color: #e2e8f0;
    color: #475569;
}

.cookie-btn.reject:hover {
    background-color: #cbd5e1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow: auto;
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #1a365d;
}

.modal-content h2 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn {
    width: 100%;
    padding: 14px 30px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1d4ed8;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

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

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

    .process-steps {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .main-nav {
        display: none;
    }
}