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

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

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

.container-full {
    width: 100%;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

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

.btn-accept:hover {
    background: #229954;
}

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

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

.header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

.nav a:hover {
    color: #27ae60;
}

.hero-section {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: #fff;
    max-width: 650px;
}

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

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: #34495e;
    text-align: center;
}

.approach-section {
    padding: 100px 20px;
    background: #fff;
}

.approach-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
    min-width: 0;
}

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

.approach-text {
    flex: 1;
    min-width: 0;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #555;
}

.services-preview {
    padding: 100px 20px;
    background: #ecf0f1;
}

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

.section-header-centered h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-centered p {
    font-size: 18px;
    color: #555;
}

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

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.service-body {
    padding: 28px;
}

.service-body h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 18px;
}

.service-select {
    width: 100%;
    padding: 12px 24px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-select:hover {
    background: #229954;
}

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

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.form-header p {
    font-size: 17px;
    color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #27ae60;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

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

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

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #27ae60;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

.footer {
    background: #34495e;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5f7f;
}

.footer-bottom p {
    font-size: 13px;
    color: #bdc3c7;
}

.page-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.content-section {
    padding: 100px 20px;
    background: #fff;
}

.content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-text {
    flex: 1;
    min-width: 0;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.content-image {
    flex: 1;
    min-width: 0;
}

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

.principles-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.principles-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.principle-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #27ae60;
}

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

.team-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-section p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #555;
}

.services-detail-section {
    padding: 80px 20px;
    background: #fff;
}

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

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

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

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

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

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

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.service-detail-content ul {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.cta-section {
    padding: 100px 20px;
    background: #ecf0f1;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.btn-cta {
    display: inline-block;
    padding: 14px 40px;
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: #229954;
}

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

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

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #555;
}

.contact-note-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-note-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    color: #2c3e50;
}

.contact-note-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: center;
    color: #555;
}

.thanks-section {
    padding: 120px 20px;
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-main {
    font-size: 22px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.service-confirmation {
    margin: 24px 0;
}

.service-note {
    font-size: 18px;
    color: #555;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.thanks-content p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #229954;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #27ae60;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #27ae60;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #27ae60;
    color: #fff;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

.legal-page a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #229954;
}

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

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

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

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

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

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

    .service-card {
        width: 100%;
    }

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

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

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

    .nav {
        width: 100%;
        justify-content: center;
    }

    .thanks-content h1 {
        font-size: 36px;
    }

    .legal-page h1 {
        font-size: 32px;
    }
}