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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-main {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8fdf9;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-visual {
    flex: 1;
    background: #e8f5e9;
    position: relative;
    overflow: hidden;
}

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

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

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

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-visual {
    flex: 1;
    background: #e8f5e9;
}

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

.intro-content {
    flex: 1;
    padding: 60px;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-preview {
    background: #ffffff;
    padding: 100px 40px;
}

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-intro {
    font-size: 19px;
    color: #666;
    line-height: 1.7;
}

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

.service-card-split {
    display: flex;
    align-items: stretch;
    background: #f9f9f9;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-visual {
    flex: 1;
    background: #e8f5e9;
    min-height: 400px;
}

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

.service-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.select-service {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.cta-inline {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: #f8fdf9;
    border-radius: 8px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inline p {
    font-size: 22px;
    margin-bottom: 24px;
    color: #333;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #27ae60;
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid #27ae60;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #27ae60;
    color: #ffffff;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
    align-items: center;
}

.trust-content {
    flex: 1.2;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.trust-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8fdf9;
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.form-section {
    background: #f8fdf9;
    padding: 100px 40px;
}

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

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

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: #666;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.disclaimer-section {
    background: #fffbf5;
    padding: 60px 40px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.footer-main {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #27ae60;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

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

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

.thanks-content .selected-service {
    font-weight: 600;
    color: #27ae60;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    background: #27ae60;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #229954;
}

.page-header {
    background: #f8fdf9;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: #333;
    font-weight: 600;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.page-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.contact-info-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-info-split {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.contact-details {
    flex: 1;
    background: #f8fdf9;
    padding: 40px;
    border-radius: 8px;
}

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #333;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.about-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 80px;
}

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

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-list-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.service-item {
    background: #f9f9f9;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .trust-split,
    .about-split,
    .contact-info-split {
        flex-direction: column;
    }

    .service-card-split.reverse {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 20px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}