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

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

.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: 250px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

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

.header-left {
    flex: 1;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    flex: 2;
    display: flex;
    justify-content: flex-end;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 3px;
    margin-right: 10px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #7f8c8d;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.8;
}

.intro-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.problem-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

.problem-grid {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.problem-card h3 {
    font-size: 22px;
    padding: 20px 25px 10px;
    color: #2c3e50;
}

.problem-card p {
    padding: 0 25px 25px;
    color: #7f8c8d;
    line-height: 1.6;
}

.services-showcase {
    padding: 100px 60px;
    background-color: #ffffff;
}

.services-showcase h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

.service-list-alt {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item-left,
.service-item-right {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-item-left {
    flex-direction: row;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 17px;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

.duration {
    font-size: 14px;
    color: #95a5a6;
}

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

.service-item-left img,
.service-item-right img {
    flex: 1;
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.form-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

.form-container > p {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 100px 60px;
    background-color: #ffffff;
    text-align: center;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.trust-section > p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.trust-features {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 60px 60px;
    background-color: #ecf0f1;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.page-hero {
    padding: 100px 60px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 20px;
    color: #7f8c8d;
}

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

.story-content {
    flex: 1.3;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.story-image {
    flex: 1;
    background-color: #ecf0f1;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    color: #7f8c8d;
    line-height: 1.7;
}

.team-section {
    padding: 80px 60px;
    background-color: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-section p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.team-section img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.mission-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.mission-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.mission-section p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3498db;
}

.service-detail-header h2 {
    font-size: 32px;
    color: #2c3e50;
}

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

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-detail-content img {
    flex: 1;
    max-width: 500px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text p {
    font-size: 17px;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-text h3 {
    font-size: 20px;
    color: #2c3e50;
    margin: 25px 0 15px;
}

.service-detail-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-text ul li {
    color: #7f8c8d;
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-banner {
    padding: 80px 60px;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.cta-banner h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-banner .cta-primary:hover {
    background-color: #ecf0f1;
    color: #2980b9;
}

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

.contact-main h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-details {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
}

.contact-cta {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.service-area {
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.service-area h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-area p {
    font-size: 17px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 120px 60px;
    min-height: 500px;
    background-color: #f8f9fa;
}

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

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

.thanks-content > p {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.thanks-details p {
    font-size: 18px;
    color: #2c3e50;
    margin: 10px 0;
}

.thanks-next {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: left;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.thanks-next ol {
    margin-left: 30px;
}

.thanks-next ol li {
    font-size: 17px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-main {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .intro-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

    .problem-grid {
        flex-direction: column;
        padding: 0 30px;
    }

    .service-item-left,
    .service-item-right {
        flex-direction: column;
    }

    .service-detail-content {
        flex-direction: column;
    }

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

    .trust-features {
        flex-direction: column;
    }

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