* {
    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;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #1a3a52;
    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;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.hero-section {
    background-color: #f4f7fa;
    padding: 80px 20px 60px;
}

.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;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

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

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

.section-container.narrow {
    max-width: 800px;
}

.intro-section {
    padding: 90px 20px;
    text-align: center;
}

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

.intro-section p {
    font-size: 18px;
    color: #546e7a;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.feature-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.feature-item img {
    flex: 0 0 45%;
    border-radius: 8px;
    object-fit: cover;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a3a52;
}

.feature-text p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.value-section {
    padding: 80px 20px;
}

.value-section.alt-bg {
    background-color: #f8fafb;
}

.value-content {
    flex: 1;
}

.value-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a3a52;
}

.value-list {
    list-style: none;
    font-size: 17px;
    color: #546e7a;
}

.value-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
}

.value-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
    font-size: 20px;
}

.value-image {
    flex: 0 0 48%;
}

.value-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.value-section .section-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.services-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #f8fafb;
    padding: 35px 30px;
    border-radius: 8px;
    border: 2px solid #e0e6eb;
    transition: all 0.3s;
    min-width: 280px;
}

.service-card:hover {
    border-color: #4a9eff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-card p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 20px;
}

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

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

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 50px;
}

.inquiry-form {
    background-color: #ffffff;
    padding: 45px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.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 textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e6eb;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    background-color: #2e7d32;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #388e3c;
}

.cta-button {
    display: inline-block;
    background-color: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    padding: 90px 20px;
}

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

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 35px 40px;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
    text-align: center;
}

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

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

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

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0c4d4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 25px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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 {
    color: #ecf0f1;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

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

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

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

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

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

.page-subtitle {
    font-size: 19px;
    color: #b0c4d4;
}

.about-intro-section {
    padding: 90px 20px;
}

.about-intro-section .section-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

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

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

.about-image {
    flex: 0 0 45%;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 90px 20px;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
    min-width: 280px;
}

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

.value-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.approach-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background-color: #1a3a52;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a3a52;
}

.step-content p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.team-section {
    padding: 90px 20px;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    text-align: center;
    min-width: 250px;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a3a52;
}

.team-member p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.cta-section {
    padding: 90px 20px;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 35px;
}

.services-detail-section {
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e6eb;
}

.service-detail-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

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

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-size: 24px;
    line-height: 1;
}

.service-detail-image {
    flex: 0 0 45%;
}

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

.service-price-box {
    background-color: #f4f7fa;
    padding: 20px 25px;
    border-radius: 8px;
    display: inline-block;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;
}

.contact-section {
    padding: 60px 20px;
}

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

.contact-info-block {
    flex: 1;
}

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

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

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

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

.email-static {
    color: #546e7a;
    font-size: 16px;
}

.contact-map {
    flex: 0 0 50%;
}

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

.contact-cta-section {
    padding: 80px 20px;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a3a52;
}

.contact-cta-section p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
}

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

.thanks-message {
    font-size: 19px;
    color: #546e7a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-info {
    background-color: #f4f7fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-text {
    font-size: 17px;
    color: #2c3e50;
}

.thanks-next-steps {
    margin-bottom: 50px;
    text-align: left;
}

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

.next-steps-list {
    list-style: none;
}

.next-steps-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.next-steps-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: 700;
    font-size: 18px;
}

.legal-content-section {
    padding: 60px 20px 90px;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a3a52;
}

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

.legal-text p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-text li {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 15px;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .feature-item,
    .about-intro-section .section-container,
    .value-section .section-container,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

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

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

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

    .value-card,
    .team-member {
        flex: 1 1 100%;
    }
}