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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

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

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

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

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

.main-nav {
    background: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.hero-card {
    margin: 40px auto;
    max-width: 1400px;
    padding: 0 30px;
}

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 60px 50px;
    color: white;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 650px;
    opacity: 0.95;
}

.intro-story {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

.story-card {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 16px;
    border-left: 6px solid #3498db;
}

.story-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.story-card p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.problem-amplify {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}

.amplify-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.amplify-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.amplify-card.reverse {
    flex-direction: row-reverse;
}

.amplify-card img {
    width: 45%;
    border-radius: 10px;
    background-color: #bdc3c7;
}

.amplify-text {
    flex: 1;
}

.amplify-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.amplify-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.insight-reveal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 30px;
    margin: 100px 0;
}

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

.insight-container h2 {
    font-size: 44px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.insight-cards {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.insight-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

.insight-item h4 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.insight-item p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.trust-build {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}

.trust-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.testimonial-card {
    flex: 1;
    background: #ecf0f1;
    padding: 35px;
    border-radius: 12px;
    position: relative;
}

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

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

.services-showcase {
    background: #f8f9fa;
    padding: 100px 30px;
    margin: 100px 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    width: calc(50% - 18px);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 280px;
    background-color: #95a5a6;
}

.service-content {
    padding: 35px;
}

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

.service-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.benefits-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
}

.benefits-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    width: calc(50% - 20px);
    background: white;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #e74c3c;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.form-section {
    background: #2c3e50;
    padding: 100px 30px;
    margin: 100px 0 0 0;
}

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

.form-container h2 {
    font-size: 42px;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-description {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.order-form {
    background: white;
    padding: 50px;
    border-radius: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.disclaimer-section {
    background: #ecf0f1;
    padding: 50px 30px;
}

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

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

.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-service {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

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

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.contact-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-header p {
    font-size: 20px;
    color: #7f8c8d;
}

.contact-grid {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 16px;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

.about-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 30px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.about-content {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 16px;
    margin-bottom: 60px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.services-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.services-header p {
    font-size: 20px;
    color: #7f8c8d;
}

.service-detail {
    background: white;
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail .price {
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

.service-detail ul li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .insight-cards {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

    .amplify-card,
    .amplify-card.reverse {
        flex-direction: column;
    }

    .amplify-card img {
        width: 100%;
    }

    .benefit-item {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
    }
}
