* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ad-label {
    font-size: 0.75rem;
    color: #718096;
    background-color: #f7fafc;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #1a202c;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #f7fafc;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
}

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

.hero-text p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #2d3748;
    transform: translateY(-2px);
}

.value-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.value-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a202c;
}

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

.services-section {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #1a202c;
}

.section-intro p {
    font-size: 1.2rem;
    color: #4a5568;
}

.service-row {
    display: flex;
    margin-bottom: 0;
    background-color: #ffffff;
}

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

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.service-content p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    display: inline-block;
    background-color: #2d3748;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1rem;
}

.btn-select-service:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 5rem 0;
    background-color: #1a202c;
    color: #ffffff;
}

.testimonial-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.testimonial-card {
    flex: 1;
    padding: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #cbd5e0;
    font-weight: 600;
}

.form-section {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-left,
.form-right {
    flex: 1;
    padding: 4rem 3rem;
}

.form-left {
    background-color: #2d3748;
    color: #ffffff;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

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

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

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

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

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

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

.btn-submit {
    background-color: #1a202c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1.05rem;
}

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

.cta-section {
    padding: 5rem 0;
    background-color: #2d3748;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #1a202c;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: #f7fafc;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

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

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

.footer-disclaimer {
    background-color: #2d3748;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.95rem;
}

.btn-cookie-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #2d3748;
}

.page-hero {
    background-color: #f7fafc;
    padding: 5rem 0 3rem;
    text-align: center;
}

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

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

.services-detail-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    background-color: #f7fafc;
}

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

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 4rem 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.service-detail-content p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #4a5568;
}

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

.service-detail-price {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-story-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a202c;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
    color: #1a202c;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a202c;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.approach-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.approach-text {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a202c;
}

.approach-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.approach-list strong {
    color: #1a202c;
    font-weight: 700;
}

.team-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a202c;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1a202c;
}

.team-role {
    color: #718096;
    font-size: 0.95rem;
}

.contact-info-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-left {
    flex: 1;
    padding: 3rem;
}

.contact-info-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #1a202c;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

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

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

.contact-note {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
}

.contact-note p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.location-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a202c;
}

.location-section p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.location-info {
    margin-top: 2rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
}

.location-info strong {
    color: #1a202c;
}

.thanks-section {
    padding: 6rem 0;
    background-color: #f7fafc;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a202c;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f7fafc;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #2d3748;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.thanks-next-steps h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a202c;
}

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

.thanks-next-steps li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-next-steps li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.btn-primary {
    display: inline-block;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary-link {
    display: inline-block;
    color: #2d3748;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2d3748;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary-link:hover {
    background-color: #2d3748;
    color: #ffffff;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a202c;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a202c;
}

.legal-page p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.6rem;
}

.legal-page a {
    color: #2d3748;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .hero-split,
    .service-row,
    .service-row-reverse,
    .form-split,
    .about-split,
    .approach-split,
    .contact-split,
    .service-detail-split,
    .service-detail-split-reverse {
        flex-direction: column;
    }

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

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

    .main-nav {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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