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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.main-nav a:hover {
    color: #0984e3;
}

.ad-disclosure {
    font-size: 12px;
    color: #636e72;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

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

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

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #0984e3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-cta:hover {
    background-color: #0770c4;
    transform: translateY(-2px);
}

.btn-secondary-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #0984e3;
    text-decoration: none;
    border: 2px solid #0984e3;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary-link:hover {
    background-color: #0984e3;
    color: #ffffff;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #636e72;
}

.services-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: 100%;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

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

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

.service-content {
    padding: 25px;
}

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

.service-content p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0984e3;
    margin-top: 10px;
}

.benefits-section {
    padding: 80px 0;
    background-color: #f0f3f7;
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3436;
}

.benefit-item p {
    font-size: 17px;
    color: #636e72;
}

.order-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.order-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.order-intro {
    text-align: center;
    font-size: 18px;
    color: #636e72;
    margin-bottom: 40px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 14px 32px;
    background-color: #0984e3;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.testimonial {
    max-width: 350px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: #2d3436;
    margin-bottom: 15px;
    font-style: italic;
}

.author {
    display: block;
    font-size: 14px;
    color: #636e72;
    font-weight: 600;
}

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

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

.main-footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    color: #b2bec3;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #636e72;
}

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

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

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

.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;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #74b9ff;
    text-decoration: underline;
}

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

.btn-primary {
    padding: 10px 20px;
    background-color: #0984e3;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0770c4;
}

.btn-secondary {
    padding: 10px 20px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2d3436;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f0f3f7;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: #636e72;
}

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-section .container {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.team-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    min-width: 300px;
}

.team-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.team-text p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 15px;
}

.values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

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

.value-item {
    max-width: 350px;
}

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

.value-item p {
    font-size: 16px;
    color: #636e72;
}

.process-section {
    padding: 80px 0;
    background-color: #f0f3f7;
}

.process-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.process-section p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    background-color: #0984e3;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

.service-detail-content p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0984e3;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.pricing-note {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-note h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.pricing-note p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 20px;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d3436;
}

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

.contact-block p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 8px;
}

.contact-map {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-map h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-map p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 15px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f0f3f7;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3436;
}

.faq-item p {
    font-size: 16px;
    color: #636e72;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    color: #636e72;
    margin-bottom: 50px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.thanks-steps {
    padding-left: 20px;
}

.thanks-steps li {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 15px;
}

.thanks-note {
    background-color: #fff9e6;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-note p {
    font-size: 16px;
    color: #636e72;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 14px;
    color: #636e72;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d3436;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3436;
}

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

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

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

.legal-page a {
    color: #0984e3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

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

    .main-nav {
        justify-content: center;
    }

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

    .service-detail-item.reverse {
        flex-direction: column;
    }

    .team-section .container {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}