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

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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #1e3a8a;
}

.hero-card {
    background-color: #ffffff;
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text-card {
    flex: 1;
    min-width: 300px;
}

.hero-text-card h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
}

.hero-text-card p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.hero-image-card {
    flex: 1;
    min-width: 300px;
    background-color: #e0e7ff;
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-cards {
    padding: 80px 20px;
    background-color: #f1f5f9;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    background-color: #dbeafe;
    overflow: hidden;
    height: 200px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card h3 {
    padding: 24px 24px 12px;
    color: #1e293b;
    font-size: 20px;
}

.info-card p {
    padding: 0 24px 24px;
    color: #64748b;
    line-height: 1.6;
}

.services-showcase {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.section-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 12px;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
    background-color: #cbd5e1;
}

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

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 12px;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.service-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-card.selected {
    border: 2px solid #1e3a8a;
}

.contact-form-section {
    padding: 80px 20px;
    background-color: #f1f5f9;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 12px;
}

.form-intro p {
    color: #64748b;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #334155;
    font-weight: 500;
}

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

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

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

.btn-submit {
    padding: 16px 32px;
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.main-footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 60px 20px 20px;
}

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

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

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

.footer-section p {
    line-height: 1.7;
    color: #cbd5e1;
}

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

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #93c5fd;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #1e3a8a;
    color: #ffffff;
}

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

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

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

.about-hero {
    background-color: #ffffff;
    padding: 80px 20px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-page-hero {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.services-page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-hero {
    background-color: #ffffff;
    padding: 60px 20px;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 32px;
}

.info-item {
    margin-bottom: 24px;
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.info-item h3 {
    color: #1e3a8a;
    margin-bottom: 8px;
    font-size: 18px;
}

.info-item p {
    color: #475569;
    line-height: 1.6;
}

.thanks-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-container h1 {
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 28px;
    background-color: #1e3a8a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #1e40af;
}

.legal-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    color: #1e293b;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-text-card h1 {
        font-size: 32px;
    }

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

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

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

    .form-wrapper {
        padding: 32px 24px;
    }
}