* {
    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-color: #ffffff;
}

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

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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.main-nav {
    display: flex;
    gap: 35px;
}

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

.main-nav a:hover {
    color: #2563eb;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-section {
    margin-top: -1px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1e293b;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(30, 41, 59, 0.85) 100%);
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 700px;
}

.hero-overlay p {
    font-size: 20px;
    color: #e2e8f0;
    margin-bottom: 35px;
    max-width: 600px;
}

.cta-primary {
    background-color: #f59e0b;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.trust-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1e293b;
    text-align: center;
}

.trust-section p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 50px;
    text-align: center;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.stat-label {
    font-size: 16px;
    color: #64748b;
    text-align: center;
}

.problem-section {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

.problem-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
}

.problem-image {
    flex: 1;
    background-color: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

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

.services-preview {
    padding: 90px 0;
    background-color: #f8fafc;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px 25px;
    color: #1e293b;
}

.service-card p {
    font-size: 15px;
    color: #64748b;
    margin: 0 25px 20px 25px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 25px 20px 25px;
}

.btn-service {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 25px 25px 25px;
    border-radius: 6px;
}

.btn-service:hover {
    background-color: #1d4ed8;
}

.btn-service.selected {
    background-color: #10b981;
}

.services-link-wrapper {
    text-align: center;
    margin-top: 40px;
}

.link-inline {
    color: #2563eb;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 3px;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #1d4ed8;
}

.process-section {
    padding: 90px 0;
    background-color: #1e293b;
}

.process-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: #ffffff;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3b82f6;
    min-width: 80px;
}

.step-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #ffffff;
}

.step-item p {
    font-size: 17px;
    color: #cbd5e1;
}

.testimonials-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8fafc;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.form-section {
    padding: 90px 0;
    background-color: #f8fafc;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1e293b;
    text-align: center;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: #64748b;
    margin-bottom: 50px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f8fafc;
    color: #64748b;
}

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

.btn-submit:hover {
    background-color: #1d4ed8;
}

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-top: 20px;
}

.form-disclaimer a {
    color: #2563eb;
    text-decoration: none;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #78350f;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px 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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #334155;
}

.about-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
}

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

.about-values {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    background-color: #f8fafc;
    padding: 35px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2563eb;
}

.value-card p {
    font-size: 16px;
    color: #64748b;
}

.services-detail-section {
    padding: 80px 0;
}

.services-detail-section h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.service-detail-content {
    display: flex;
    gap: 40px;
}

.service-detail-image {
    flex: 0 0 400px;
    background-color: #f1f5f9;
}

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

.service-detail-text {
    flex: 1;
    padding: 40px;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-detail-text .price-large {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
    display: block;
}

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

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

.service-detail-text ul li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 10px;
}

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

.contact-page h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    background-color: #f8fafc;
    padding: 35px;
    border-radius: 12px;
}

.contact-info-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.contact-info-item p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

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

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1e293b;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e293b;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1e293b;
}

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    padding: 120px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8fafc;
    padding: 60px 40px;
    border-radius: 12px;
}

.thanks-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 30px;
}

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

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

.thanks-service {
    font-weight: 600;
    color: #2563eb;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-home:hover {
    background-color: #1d4ed8;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-overlay p {
        font-size: 17px;
    }

    .problem-grid {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .service-detail-image {
        flex: 0 0 300px;
    }

    .contact-form {
        padding: 30px;
    }
}
