* {
    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: #333;
    background-color: #fff;
}

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

.top-nav {
    background-color: #1a3a4a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

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

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

.nav-links a:hover {
    opacity: 0.8;
}

.hero-card {
    display: flex;
    max-width: 1200px;
    margin: 48px auto;
    gap: 40px;
    padding: 0 24px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a3a4a;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.cta-primary {
    background-color: #2c5f7c;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-cards {
    background-color: #f9fafb;
    padding: 64px 24px;
}

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

.card-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.info-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.featured-services {
    padding: 80px 24px;
}

.featured-services h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a3a4a;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.services-card-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    padding: 24px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a3a4a;
}

.service-details p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 16px;
}

.select-service-btn {
    background-color: #2c5f7c;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #234a5f;
}

.order-form-section {
    background-color: #f0f4f8;
    padding: 64px 24px;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a3a4a;
}

.selected-service-display {
    background-color: #e8f4f8;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #2c5f7c;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #234a5f;
}

.trust-section {
    padding: 64px 24px;
    background-color: #1a3a4a;
    color: #fff;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

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

.trust-card {
    text-align: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a90a4;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 16px;
    opacity: 0.9;
}

.main-footer {
    background-color: #0f2633;
    color: #fff;
    padding: 48px 24px 24px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #2a4a5a;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px !important;
    color: #777 !important;
    line-height: 1.6;
    max-width: 800px;
    margin: 16px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a4a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #8ec4d8;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #2c5f7c;
    color: #fff;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
}

.thanks-card {
    max-width: 600px;
    background-color: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #1a3a4a;
    margin-bottom: 16px;
}

.thanks-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.back-btn {
    background-color: #2c5f7c;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #234a5f;
}

.about-hero {
    padding: 80px 24px;
    background-color: #f0f4f8;
}

.about-hero h1 {
    font-size: 42px;
    color: #1a3a4a;
    margin-bottom: 24px;
    text-align: center;
}

.about-content {
    padding: 64px 24px;
}

.about-section {
    margin-bottom: 48px;
}

.about-section h2 {
    font-size: 32px;
    color: #1a3a4a;
    margin-bottom: 16px;
}

.about-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 24px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 20px;
    color: #1a3a4a;
    margin-bottom: 12px;
}

.contact-page {
    padding: 64px 24px;
}

.contact-page h1 {
    font-size: 42px;
    color: #1a3a4a;
    margin-bottom: 48px;
    text-align: center;
}

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

.contact-item {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 20px;
    color: #1a3a4a;
    margin-bottom: 12px;
}

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

.legal-page {
    padding: 64px 24px;
}

.legal-page h1 {
    font-size: 38px;
    color: #1a3a4a;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 28px;
    color: #1a3a4a;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c5f7c;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-page li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.services-page {
    padding: 64px 24px;
}

.services-page h1 {
    font-size: 42px;
    color: #1a3a4a;
    margin-bottom: 16px;
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

    .nav-links {
        gap: 16px;
    }

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

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

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

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