* {
    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;
}

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

.header-main {
    background-color: #1a365d;
    color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    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;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.navigation {
    display: flex;
    gap: 30px;
}

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

.navigation a:hover {
    opacity: 0.8;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    color: #e8f4f8;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #1a365d;
    text-decoration: none;
    border: 2px solid #1a365d;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a365d;
    color: #ffffff;
}

.intro-statement {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

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

.intro-statement h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a365d;
}

.intro-statement p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

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

.section-heading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a365d;
}

.cards-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    min-width: 300px;
    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);
}

.card-image-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.card-content {
    padding: 25px;
}

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

.card-content p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

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

.select-service-btn:hover {
    background-color: #2c5282;
}

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

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

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a365d;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 40px;
    color: #4a5568;
    font-size: 17px;
}

.consultation-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-indicators {
    padding: 80px 20px;
    background-color: #ffffff;
}

.trust-indicators h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a365d;
    text-align: center;
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonials-inline blockquote {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 5px solid #3498db;
    border-radius: 8px;
}

.testimonials-inline blockquote p {
    font-size: 17px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonials-inline cite {
    font-style: normal;
    font-weight: 600;
    color: #1a365d;
    font-size: 15px;
}

.closing-cta {
    padding: 80px 20px;
    background-color: #1a365d;
    text-align: center;
}

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

.closing-cta p {
    font-size: 18px;
    color: #e8f4f8;
    margin-bottom: 30px;
}

.footer-main {
    background-color: #0f2440;
    color: #ffffff;
    padding: 50px 20px 20px;
}

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

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

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

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
    text-align: center;
    font-size: 14px;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 15px 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: 30px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject:hover {
    opacity: 0.8;
}

.page-header {
    padding: 60px 20px;
    background-color: #1a365d;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #e8f4f8;
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a365d;
}

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

.content-image {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a365d;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a365d;
}

.value-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.experience-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.experience-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a365d;
}

.experience-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.closing-about {
    padding: 80px 20px;
    background-color: #f0f4f8;
    text-align: center;
}

.closing-about h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a365d;
}

.closing-about p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

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

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a365d;
}

.service-detail-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.price-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 25px 0 20px;
}

.cta-services {
    padding: 80px 20px;
    background-color: #1a365d;
    text-align: center;
}

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

.cta-services p {
    font-size: 18px;
    color: #e8f4f8;
    margin-bottom: 30px;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a365d;
}

.contact-item {
    margin-bottom: 30px;
}

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

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-image-box {
    flex: 1;
    height: 500px;
    background-color: #f0f4f8;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-text {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-text h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a365d;
}

.contact-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-page {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a365d;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

    .hero-overlay p {
        font-size: 16px;
    }

    .service-card {
        width: 100%;
    }

    .container-split,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .cards-layout {
        flex-direction: column;
    }

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