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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    background: #2ecc71;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

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

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

.main-nav {
    background: #ffffff;
    padding: 1.2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #555555;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.intro-split, .story-split, .testimonial-split, .team-split {
    padding: 5rem 2rem;
    background: #ffffff;
}

.intro-split.reverse, .team-split {
    background: #f8f9fa;
}

.split-image, .split-text {
    flex: 1;
}

.split-image {
    overflow: hidden;
    border-radius: 8px;
}

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

.split-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555555;
}

.services-preview {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px 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 8px 25px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin: 0 1.5rem 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #2ecc71;
    margin: 1rem 1.5rem;
}

.btn-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #2980b9;
}

.testimonial-split .split-text {
    padding: 3rem;
    background: #2c3e50;
    color: #ffffff;
    border-radius: 8px;
}

.testimonial .quote {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    color: #ffffff;
}

.testimonial .author {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: #ecf0f1;
}

.process-section {
    padding: 5rem 2rem;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.process-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.process-split {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.process-content {
    flex: 1;
}

.process-content h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
}

.process-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.15rem;
    color: #666666;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2ecc71;
    color: #ffffff;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
}

.final-cta, .cta-section {
    padding: 5rem 2rem;
    background: #2c3e50;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-hero .hero-content {
    max-width: 900px;
}

.page-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.3rem;
    color: #f0f0f0;
}

.values-section, .approach-section, .process-overview {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.values-section h2, .approach-section h2, .process-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item {
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-item.reverse {
    background: #ffffff;
    border: 2px solid #e0e0e0;
}

.value-content h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
}

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

.approach-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 1.5rem;
}

.services-detail {
    padding: 3rem 2rem;
    background: #ffffff;
}

.service-detail-item {
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.detail-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.5rem;
}

.detail-text ul {
    list-style: none;
    margin: 2rem 0;
}

.detail-text ul li {
    font-size: 1.05rem;
    color: #555555;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.detail-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.price-detail {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2ecc71;
    margin: 1.5rem 0;
}

.detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.process-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.process-step h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.contact-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.contact-item a {
    color: #3498db;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
}

.visit-section, .faq-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.visit-section {
    background: #f8f9fa;
}

.visit-section h2, .faq-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.visit-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #2ecc71;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirm {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.15rem;
    color: #2c3e50;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.update-date {
    font-size: 0.95rem;
    color: #999999;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.9rem;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 1.5rem 0 0.8rem;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3498db;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .intro-split, .story-split, .testimonial-split, .team-split {
        padding: 6rem 2rem;
    }

    .detail-split, .contact-split {
        flex-direction: row;
    }

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

    .process-item {
        flex-direction: row;
        align-items: center;
    }

    .process-item.reverse {
        flex-direction: row-reverse;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 300px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .process-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .next-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        gap: 3rem;
    }

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

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}