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

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

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

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

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

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-card {
    background-color: #ffffff;
    margin: 40px 0;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-text-card {
    flex: 1;
}

.hero-text-card h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.hero-image-card {
    flex: 1;
    background-color: #e8f4f8;
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.intro-card {
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-card p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.services-grid {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

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

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8f4f8;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

.btn-select:hover {
    background-color: #2980b9;
}

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

.trust-card {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
}

.trust-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.trust-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.trust-image {
    flex: 1;
    background-color: #e8f4f8;
}

.trust-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.benefits-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    color: #5a6c7d;
}

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

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

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.form-card p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

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

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

.form-group input {
    padding: 14px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    margin-top: 12px;
}

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

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

.disclaimer-card {
    padding: 30px;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    border-radius: 6px;
}

.disclaimer-text {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    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;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
}

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

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

.about-text-card {
    flex: 1;
}

.about-text-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text-card p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.about-image-card {
    flex: 1;
    background-color: #e8f4f8;
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
}

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

.team-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

.approach-card h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-step {
    flex: 1 1 calc(50% - 40px);
    min-width: 250px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 12px;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.approach-step p {
    font-size: 16px;
    color: #5a6c7d;
}

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

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

.service-detail-card {
    display: flex;
    gap: 0;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 16px;
    color: #5a6c7d;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8f4f8;
    min-height: 400px;
}

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

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

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-card {
    flex: 1;
}

.contact-info-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

.contact-map-card {
    flex: 1;
    background-color: #e8f4f8;
}

.contact-map-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.contact-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-card {
    text-align: center;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.thanks-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.thanks-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-info {
    background-color: #e8f8f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #2c3e50;
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

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

@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column;
        padding: 40px 0;
    }

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

    .hero-text-card p {
        font-size: 16px;
    }

    .nav {
        flex-direction: column;
        gap: 12px;
    }

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

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

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

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

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

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

    .section-title {
        font-size: 28px;
    }

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