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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    padding: 20px 0;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    padding: 20px 0;
    display: block;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8fafc;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #1e3a5f;
    color: #ffffff;
}

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

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

.hero-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #fbbf24;
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

.intro-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e3a5f;
}

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

.services-preview {
    padding: 80px 40px;
    background-color: #f1f5f9;
}

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

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1e3a5f;
}

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

.service-cards-grid {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1e3a5f;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #64748b;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #059669;
    margin: 0 24px 20px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #1e3a5f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.benefits-split {
    display: flex;
    align-items: center;
}

.benefits-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8fafc;
}

.benefits-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1e3a5f;
}

.benefits-list {
    list-style: none;
    margin-bottom: 24px;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    color: #475569;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
    font-size: 20px;
}

.benefits-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

.benefits-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.form-section {
    padding: 80px 40px;
    background-color: #1e3a5f;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

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

.inquiry-form {
    background-color: #2d4a6f;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #475569;
    border-radius: 6px;
    background-color: #f8fafc;
    color: #1e293b;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background-color: #fbbf24;
    color: #1e3a5f;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #f59e0b;
}

.testimonial-section {
    padding: 80px 40px;
    background-color: #f8fafc;
}

.testimonial-content {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a5f;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #1e3a5f;
    font-style: normal;
}

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

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

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

.footer-section h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: #1e293b;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-disclaimer strong {
    color: #e2e8f0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 200;
    display: none;
}

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

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

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

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

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

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

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

.cookie-btn.reject {
    background-color: #64748b;
    color: #ffffff;
}

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

.cookie-link {
    color: #fbbf24;
    text-decoration: underline;
    font-size: 14px;
}

.page-header {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

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

.about-split {
    display: flex;
    align-items: center;
}

.about-content {
    flex: 1;
    padding: 80px 60px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e3a5f;
}

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

.about-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.approach-section {
    display: flex;
    align-items: center;
    background-color: #f8fafc;
}

.approach-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.approach-content {
    flex: 1;
    padding: 80px 60px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e3a5f;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #475569;
}

.values-section {
    padding: 80px 40px;
}

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

.values-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a5f;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1e3a5f;
}

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

.experience-section {
    padding: 80px 40px;
    background-color: #f1f5f9;
}

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

.experience-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1e3a5f;
}

.experience-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #475569;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #475569;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #059669;
    margin: 24px 0;
}

.select-service-btn {
    padding: 16px 32px;
    background-color: #1e3a5f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e5e7eb;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.service-includes {
    padding: 80px 40px;
    background-color: #f8fafc;
}

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

.includes-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a5f;
}

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

.include-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

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

.include-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.contact-content {
    padding: 40px 20px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #475569;
}

.contact-details {
    margin-bottom: 40px;
}

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

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

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

.contact-note {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #fbbf24;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #475569;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.contact-image {
    flex: 1;
    background-color: #e5e7eb;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.service-areas {
    padding: 60px 40px;
    background-color: #f1f5f9;
}

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

.areas-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.areas-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #475569;
}

.thanks-section {
    padding: 80px 40px;
    min-height: 500px;
    background-color: #f8fafc;
}

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

.thanks-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.thanks-content > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #475569;
}

.thanks-details {
    text-align: left;
    margin-bottom: 40px;
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 6px;
}

.thanks-details h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.thanks-list {
    list-style: none;
}

.thanks-list li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #475569;
}

.thanks-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.thanks-service-info {
    margin-bottom: 40px;
    padding: 24px;
    background-color: #ecfdf5;
    border-radius: 6px;
}

.thanks-service-info h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.selected-service-name {
    font-size: 20px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.thanks-button {
    padding: 14px 28px;
    background-color: #1e3a5f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.thanks-button:hover {
    background-color: #2c5282;
}

.thanks-button-secondary {
    padding: 14px 28px;
    background-color: #fbbf24;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.thanks-button-secondary:hover {
    background-color: #f59e0b;
}

.thanks-contact {
    font-size: 15px;
    color: #64748b;
}

.legal-page {
    padding: 40px 20px 80px;
}

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

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.legal-updated {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #1e3a5f;
}

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

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #475569;
}

.legal-container strong {
    color: #1e3a5f;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookies-table th {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #1e3a5f;
}

.cookies-table td {
    font-size: 15px;
    color: #475569;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .benefits-split,
    .about-split,
    .approach-section,
    .contact-split,
    .service-detail-item {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
    }

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

    .service-cards-grid {
        flex-direction: column;
    }

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

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

    .values-grid,
    .includes-grid,
    .testimonial-grid {
        flex-direction: column;
    }
}