/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Container Utilities */
.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.96);
    color: #ffffff;
    padding: 25px 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;
    min-width: 280px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-buttons .btn-primary {
    background-color: #27ae60;
    color: white;
}

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

.cookie-buttons .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Header */
.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
}

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

.nav-main a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #34495e;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-text-block {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-text-block h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

/* Intro Statement */
.intro-statement {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
    font-weight: 400;
}

/* Approach Section */
.approach-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
}

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

/* Services Grid Section */
.services-grid-section {
    padding: 100px 20px;
    background-color: #fafafa;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

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

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

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

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 25px 25px 15px 25px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 25px 20px 25px;
    color: #555;
    line-height: 1.7;
}

.service-price {
    margin: 0 25px 20px 25px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
}

.btn-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 12px 20px;
    background-color: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Form Section */
.form-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-wrapper > p {
    margin-bottom: 35px;
    color: #555;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-info-box {
    background-color: #e8f5e9;
    padding: 15px 20px;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
}

.form-group-checkbox label a {
    color: #27ae60;
    text-decoration: underline;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

/* Philosophy Section */
.philosophy-section {
    padding: 100px 20px;
    background-color: #fafafa;
}

.reverse-split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
}

.split-image-left {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
}

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

.split-text-right {
    flex: 1;
    min-width: 300px;
}

.split-text-right h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-text-right p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 20px;
    background-color: #f0f0f0;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    text-align: center;
    font-style: italic;
}

/* Footer */
.footer-main {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px 20px;
}

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

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #ffffff;
}

.footer-col p {
    margin-bottom: 10px;
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Page Hero Simple */
.page-hero-simple {
    padding: 80px 20px 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.lead-text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
}

/* About Story */
.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.content-block-center {
    max-width: 800px;
    margin: 0 auto;
}

.content-block-center h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

/* Team Visual */
.team-visual {
    padding: 60px 20px;
    background-color: #fafafa;
}

.image-full-width {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

/* Values Section */
.values-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    width: calc(50% - 20px);
    min-width: 300px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Process Overview */
.process-overview {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.process-overview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.process-step {
    width: calc(50% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.expertise-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

/* Services Detail Section */
.services-detail-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

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

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

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

.service-pricing-info {
    margin: 25px 0;
    padding: 15px 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    font-size: 1.2rem;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
}

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

/* Contact Info Section */
.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: #2c3e50;
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #34495e;
    font-weight: 600;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.note-small {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 10px;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
}

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

/* Contact Approach */
.contact-approach {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-approach h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #27ae60;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Thanks Section */
.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content .lead-text {
    margin-bottom: 40px;
}

.thanks-info-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 600px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-list {
    list-style: none;
    padding-left: 0;
}

.thanks-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.thanks-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 6px;
    font-size: 1.05rem;
}

.thanks-note {
    margin: 30px 0;
    font-size: 1rem;
    color: #555;
}

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

.thanks-actions .btn-primary,
.thanks-actions .btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.thanks-actions .btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

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

.thanks-actions .btn-secondary {
    background-color: #34495e;
    color: #ffffff;
}

.thanks-actions .btn-secondary:hover {
    background-color: #2c3e50;
}

/* Legal Page */
.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #27ae60;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

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

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-table thead {
    background-color: #f8f9fa;
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.legal-table th {
    font-weight: 600;
    color: #2c3e50;
}

.legal-table td {
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 20px);
    }

    .split-layout,
    .reverse-split-layout {
        flex-direction: column;
    }

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

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

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

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

    .nav-main.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
        align-self: flex-end;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-text-block p {
        font-size: 1.1rem;
    }

    .service-card {
        width: 100%;
    }

    .value-item,
    .process-step {
        width: 100%;
    }

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

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

    .container-wide,
    .container-narrow {
        padding: 0 20px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .page-hero-simple h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .section-title-centered {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        text-align: center;
    }
}