* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.main-nav {
    background-color: #fff;
    padding: 20px 0;
    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;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
    text-decoration: none;
}

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

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

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

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #f4f7fa;
    padding: 80px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    color: #1a3a52;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f8d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1f4667;
    cursor: pointer;
}

.hero-image-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    background-color: #d4dfe8;
}

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

.intro-section {
    background-color: #fff;
    padding: 70px 20px;
}

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

.intro-section h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 25px;
}

.intro-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.services-preview {
    background-color: #f9fafb;
    padding: 90px 20px;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    color: #1a3a52;
    margin-bottom: 60px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 360px;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d4dfe8;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 24px;
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.values-section {
    background-color: #2c5f8d;
    padding: 80px 20px;
    color: #fff;
}

.values-content {
    max-width: 1000px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

.form-section {
    background-color: #fff;
    padding: 90px 20px;
}

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

.form-container h2 {
    font-size: 34px;
    color: #1a3a52;
    margin-bottom: 20px;
    text-align: center;
}

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

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, select, textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #2c5f8d;
}

.submit-button {
    padding: 16px 40px;
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 50px 20px;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: #1a3a52;
    color: #fff;
    padding: 60px 20px 30px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a52;
    color: #fff;
    padding: 25px 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;
    margin: 0;
    font-size: 15px;
}

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

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

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

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

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

.cookie-btn.reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-header {
    background-color: #2c5f8d;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

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

.page-header p {
    font-size: 19px;
    opacity: 0.95;
}

.about-intro {
    padding: 80px 20px;
    background-color: #fff;
}

.about-intro .content-wrapper {
    max-width: 1200px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    color: #1a3a52;
    margin-bottom: 25px;
}

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

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

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

.philosophy-section {
    background-color: #f9fafb;
    padding: 80px 20px;
}

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

.philosophy-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1;
    min-width: 260px;
}

.philosophy-item h3 {
    font-size: 24px;
    color: #1a3a52;
    margin-bottom: 15px;
}

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

.team-section {
    background-color: #fff;
    padding: 70px 20px;
}

.team-section h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 25px;
}

.team-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-detailed {
    background-color: #f4f7fa;
    padding: 80px 20px;
}

.values-detailed h2 {
    font-size: 38px;
    text-align: center;
    color: #1a3a52;
    margin-bottom: 60px;
}

.commitments-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.commitment h3 {
    font-size: 26px;
    color: #2c5f8d;
    margin-bottom: 15px;
}

.commitment p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

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

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

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

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

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

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

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

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f8d;
    font-weight: bold;
}

.price-box {
    background-color: #f4f7fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 5px;
}

.price-detail {
    display: block;
    font-size: 15px;
    color: #777;
}

.included-services {
    background-color: #f9fafb;
    padding: 70px 20px;
}

.included-services h2 {
    font-size: 36px;
    text-align: center;
    color: #1a3a52;
    margin-bottom: 50px;
}

.included-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.included-item {
    flex: 1;
    min-width: 220px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.included-item h3 {
    font-size: 20px;
    color: #2c5f8d;
    margin-bottom: 12px;
}

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

.contact-info-section {
    padding: 60px 20px;
    background-color: #fff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    color: #1a3a52;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 22px;
    color: #2c5f8d;
    margin-bottom: 12px;
}

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

.email-display {
    color: #2c5f8d;
    font-weight: 600;
}

.contact-map {
    flex: 1;
    background-color: #d4dfe8;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.visit-section {
    background-color: #f4f7fa;
    padding: 70px 20px;
}

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

.visit-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.response-time {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.response-time h2 {
    font-size: 32px;
    color: #1a3a52;
    margin-bottom: 20px;
}

.response-time p {
    font-size: 17px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f9fafb;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 38px;
    color: #1a3a52;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-container > p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.next-steps {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    text-align: left;
    margin: 40px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.next-steps h2 {
    font-size: 26px;
    color: #1a3a52;
    margin-bottom: 20px;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps ol li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.check-spam {
    font-size: 14px;
    color: #777;
    margin-top: 30px;
    margin-bottom: 35px;
}

.back-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c5f8d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #1f4667;
}

.legal-page {
    background-color: #fff;
    padding: 60px 20px;
}

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

.legal-container h1 {
    font-size: 40px;
    color: #1a3a52;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: #2c5f8d;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 22px;
    color: #1a3a52;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 20px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }

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

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

    .about-intro .content-wrapper,
    .service-detail,
    .service-detail.reverse,
    .contact-wrapper {
        flex-direction: column;
    }

    .philosophy-grid,
    .included-grid {
        flex-direction: column;
    }
}