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

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

.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav a:hover {
    color: #2c5282;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5282;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #48bb78;
    color: #fff;
}

.btn-accept:hover {
    background-color: #38a169;
}

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

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

.hero {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.9) 0%, rgba(44, 82, 130, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #48bb78;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #2c5282;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #2c5282;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c5282;
    color: #fff;
}

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5282;
}

.intro-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.services-grid {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #2c5282;
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5282;
}

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #48bb78;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #2c5282;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #1e3a5f;
}

.service-card.selected {
    border: 3px solid #48bb78;
}

.service-card.selected .btn-select {
    background-color: #48bb78;
}

.approach-section {
    padding: 80px 0;
    background-color: #fff;
}

.approach-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.approach-content {
    flex: 1;
    min-width: 300px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5282;
}

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

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #333;
}

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

.approach-visual {
    flex: 1;
    min-width: 300px;
}

.approach-visual img {
    width: 100%;
    border-radius: 10px;
    background-color: #e0e0e0;
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c5282;
}

.form-card p {
    margin-bottom: 30px;
    color: #666;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f0f0f0;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #48bb78;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #38a169;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.form-error {
    margin-top: 15px;
    padding: 12px;
    background-color: #fed7d7;
    color: #c53030;
    border-radius: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff8e1;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-left: 5px solid #f59e0b;
    border-radius: 5px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.footer {
    background-color: #1a202c;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    color: #cbd5e0;
    font-size: 14px;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
    font-size: 14px;
}

.page-hero {
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #e0e0e0;
}

.about-content {
    padding: 80px 0;
    background-color: #fff;
}

.content-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.content-block {
    flex: 1;
    min-width: 300px;
}

.content-block img {
    width: 100%;
    border-radius: 10px;
    background-color: #e0e0e0;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5282;
}

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

.values-section {
    margin: 60px 0;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5282;
    text-align: center;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5282;
}

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

.mission-section {
    max-width: 900px;
    margin: 0 auto;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5282;
}

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

.services-detail {
    padding: 60px 0;
    background-color: #fff;
}

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

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    background-color: #e0e0e0;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c5282;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #48bb78;
    margin-bottom: 20px;
}

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

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #333;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: 700;
}

.cta-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5282;
}

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

.contact-content {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block,
.contact-form-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2,
.contact-form-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c5282;
}

.contact-details {
    margin-top: 30px;
}

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

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

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

.info-note,
.contact-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f4f8;
    border-left: 4px solid #2c5282;
    border-radius: 5px;
}

.info-note p,
.contact-note p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.service-area-section {
    margin-top: 60px;
}

.service-area-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5282;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #f0f4f8;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5282;
}

.thanks-card p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.service-confirmation {
    padding: 20px;
    background-color: #e6fffa;
    border-radius: 5px;
    margin-bottom: 30px;
}

.service-confirmation p {
    font-size: 17px;
    color: #2c5282;
    margin: 0;
}

.thanks-info {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c5282;
}

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

.thanks-info ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 20px;
}

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

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c5282;
}

.legal-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5282;
}

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

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

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

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

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

    .section-title {
        font-size: 30px;
    }

    .service-card {
        width: 100%;
    }

    .approach-grid,
    .content-grid,
    .service-detail-card {
        flex-direction: column;
    }

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

    .thanks-card {
        padding: 40px 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}