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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.hero {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.intro-section {
    background-color: #f8f9fa;
}

.intro-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.problem-section {
    background-color: #ffffff;
}

.problem-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    border-radius: 12px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.insight-section {
    background-color: #f8f9fa;
}

.insight-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

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

.insight-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.insight-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
}

.trust-section {
    background-color: #ffffff;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.trust-icon {
    width: 56px;
    height: 56px;
    background-color: #667eea;
    color: #ffffff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.testimonials-section {
    background-color: #667eea;
    color: #ffffff;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
}

.services-section {
    background-color: #f8f9fa;
}

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

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 56px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 32px;
}

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

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.service-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: #5568d3;
}

.cta-section {
    background-color: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 56px 48px;
    border-radius: 12px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.95;
}

.form-section {
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #5568d3;
}

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 40px 24px;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 64px 24px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    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;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #667eea;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #5568d3;
}

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

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

.cookie-banner.hidden {
    display: none;
}

.page-header {
    background-color: #667eea;
    color: #ffffff;
    padding: 80px 24px 64px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-intro {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.services-detail-section {
    background-color: #f8f9fa;
}

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 24px;
    flex-wrap: wrap;
}

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

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
}

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

.service-detail-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.service-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.cta-services-section {
    background-color: #ffffff;
}

.cta-services-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 56px 48px;
    border-radius: 12px;
    text-align: center;
}

.cta-services-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-services-box p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 24px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.about-content-section {
    background-color: #ffffff;
}

.about-grid {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-text {
    flex: 2;
}

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

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

.about-sidebar {
    flex: 1;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.about-sidebar h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.about-sidebar p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.contact-section {
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 48px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.legal-content {
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 64px 48px;
    border-radius: 12px;
    text-align: center;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.thanks-box .cta-secondary {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 24px;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image {
        height: 300px;
    }

    .insight-content {
        flex-direction: column;
        gap: 32px;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

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