* {
    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;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.header-right {
    display: flex;
    gap: 35px;
}

.header-right a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.header-right a:hover {
    color: #e67e22;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background: #d35400;
    cursor: pointer;
}

.hero-right {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background: #f8f9fa;
    align-items: center;
}

.intro-content {
    flex: 1.5;
}

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

.intro-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.problem-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1.3;
}

.problem-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.problem-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 15px;
    line-height: 1.7;
}

.problem-wrapper img {
    flex: 1;
    border-radius: 8px;
    object-fit: cover;
    background: #f8f9fa;
}

.services-cards {
    padding: 100px 60px;
    background: #f8f9fa;
}

.services-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 0;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    background: #dee2e6;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px 20px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin: 0 20px 12px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
    margin: 12px 20px;
}

.select-service {
    margin: 0 20px 20px 20px;
    padding: 12px 24px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2980b9;
    cursor: pointer;
}

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

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.selected-service-box {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #27ae60;
}

.selected-service-box strong {
    color: #27ae60;
}

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

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #d35400;
    cursor: pointer;
}

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

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: calc(33.333% - 27px);
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial {
    font-size: 17px;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.cta-final {
    padding: 100px 60px;
    background: #2c3e50;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.footer {
    background: #1a252f;
    padding: 60px 60px 30px 60px;
    color: #ecf0f1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p:last-child {
    font-size: 14px;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-cookie:hover {
    background: #229954;
    cursor: pointer;
}

.btn-cookie-secondary {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie-secondary:hover {
    background: #7f8c8d;
    cursor: pointer;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-page {
    padding: 80px 60px;
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

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

.contact-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 60px;
}

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

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

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

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.about-hero {
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.about-hero p {
    font-size: 19px;
    color: #5a6c7d;
    line-height: 1.8;
    max-width: 800px;
}

.about-section {
    padding: 80px 60px;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-split img {
    flex: 1;
    border-radius: 8px;
    object-fit: cover;
    background: #dee2e6;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-list {
    padding: 80px 60px;
    background: #ffffff;
}

.services-list h1 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

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

    .header-right {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
        padding: 40px 20px;
    }

    .intro-asymmetric,
    .problem-wrapper,
    .about-split {
        flex-direction: column;
        padding: 60px 20px;
    }

    .services-cards,
    .form-section,
    .trust-section {
        padding: 60px 20px;
    }

    .service-card,
    .trust-item {
        width: 100%;
    }

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

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