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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.5rem 1rem;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    background: #f8f9fa;
}

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

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5% 5% 5% 8%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #34495e;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background: #27ae60;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.intro-asymmetric {
    display: flex;
    padding: 6rem 8%;
    gap: 5rem;
    align-items: center;
    background: #ffffff;
}

.intro-text {
    flex: 1.5;
}

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

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #27ae60;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.approach-split {
    display: flex;
    min-height: 70vh;
}

.approach-visual {
    flex: 1;
    background: #ecf0f1;
}

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

.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
    background: #2c3e50;
    color: #ffffff;
}

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

.approach-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.link-arrow::after {
    content: ' →';
    margin-left: 0.5rem;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.services-preview {
    padding: 6rem 5%;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #34495e;
    line-height: 1.6;
}

.service-price {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.testimonial-split {
    display: flex;
    min-height: 60vh;
    background: #f8f9fa;
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
}

.testimonial-content blockquote {
    max-width: 500px;
}

.testimonial-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.testimonial-visual {
    flex: 1;
    background: #ecf0f1;
}

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

.form-section {
    display: flex;
    min-height: 80vh;
}

.form-container {
    flex: 1;
    padding: 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

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

.form-container > p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-form {
    max-width: 500px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.form-visual {
    flex: 1;
    background: #ecf0f1;
}

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

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #27ae60;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7f8c8d;
    font-size: 0.9rem;
}

.about-hero {
    padding: 6rem 8%;
    background: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.25rem;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-split {
    display: flex;
    min-height: 70vh;
}

.about-content {
    flex: 1;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.about-visual {
    flex: 1;
    background: #ecf0f1;
}

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

.values-section {
    padding: 6rem 5%;
    background: #ffffff;
}

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

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

.value-card {
    flex: 1;
    padding: 2.5rem;
    background: #f8f9fa;
    border-left: 4px solid #27ae60;
}

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

.value-card p {
    line-height: 1.7;
    color: #34495e;
}

.services-hero {
    padding: 6rem 8% 4rem;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-list {
    padding: 5rem 5%;
    background: #ffffff;
}

.service-item {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-visual {
    flex: 1;
    background: #ecf0f1;
}

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

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

.service-item-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-item-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.service-item-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.contact-hero {
    padding: 6rem 8% 3rem;
    background: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #34495e;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    min-height: 60vh;
}

.contact-info {
    flex: 1;
    padding: 5%;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
    font-weight: 600;
}

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

.contact-map {
    flex: 1;
    background: #ecf0f1;
}

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

.legal-page {
    padding: 4rem 8%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

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

.legal-page ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #34495e;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2rem;
}

.thanks-service {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #27ae60;
}

.thanks-service strong {
    color: #27ae60;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        width: 100%;
    }

    .nav-main {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split,
    .approach-split,
    .testimonial-split,
    .form-section,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content h1,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.25rem;
    }

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

    .service-item {
        flex-direction: column !important;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

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