* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.ad-notice {
    background-color: #ffe5e5;
    color: #c0392b;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hero-card {
    margin: 40px auto;
    max-width: 1200px;
}

.hero-visual {
    height: 500px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
    text-align: center;
    color: white;
    max-width: 800px;
}

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

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
}

.intro-cards {
    padding: 60px 0;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: #7f8c8d;
    font-size: 16px;
}

.story-section {
    background-color: white;
    padding: 80px 0;
}

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

.story-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
}

.story-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.insight-cards h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.insight-card {
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
}

.insight-card img {
    width: 100%;
    display: block;
}

.insight-content {
    padding: 30px;
    background: white;
}

.insight-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.insight-content p {
    color: #7f8c8d;
    font-size: 16px;
}

.trust-section {
    background: white;
    padding: 80px 0;
}

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

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

.testimonial-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

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

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

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    max-width: 370px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
}

.service-info {
    padding: 30px;
}

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

.service-info p {
    color: #7f8c8d;
    font-size: 15px;
    margin-bottom: 20px;
}

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

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

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

.form-section {
    padding: 80px 0;
    background: white;
}

.form-card {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.selected-service-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    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;
}

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

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

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

.disclaimer-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e74c3c;
}

.disclaimer-card h3 {
    color: #e74c3c;
    font-size: 24px;
    margin-bottom: 20px;
}

.disclaimer-card p {
    color: #34495e;
    font-size: 15px;
    line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

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

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: #7f8c8d;
    color: white;
}

.btn-reject:hover {
    background: #6c7a7b;
}

.page-hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    font-weight: 300;
}

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

.service-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

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

.service-detail-card.featured {
    border: 3px solid #f39c12;
    box-shadow: 0 6px 24px rgba(243, 156, 18, 0.2);
}

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

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

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

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

.service-content p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

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

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #34495e;
}

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

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

.price-note {
    font-size: 16px;
    color: #e74c3c;
    font-weight: 400;
}

.btn-cta,
.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-cta-large {
    padding: 20px 50px;
    font-size: 20px;
    background: #f39c12;
}

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

.btn-cta-large:hover {
    background: #e67e22;
}

.cta-bottom {
    padding: 60px 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.cta-card {
    text-align: center;
    color: white;
}

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

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-contact {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #3498db;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-contact:hover {
    transform: scale(1.05);
}

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

.about-main-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 50px;
}

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

.about-text p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

.values-section {
    margin-bottom: 60px;
}

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

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

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

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

.value-card p {
    color: #7f8c8d;
    font-size: 16px;
}

.approach-section {
    background: white;
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    min-width: 80px;
}

.approach-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.approach-text p {
    color: #7f8c8d;
    font-size: 16px;
}

.mission-card {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.mission-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.mission-card p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-note {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid #27ae60;
}

.team-note p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
}

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

.contact-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 32px;
    min-width: 50px;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-details p {
    color: #7f8c8d;
    font-size: 16px;
}

.contact-note {
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.contact-note h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-note p {
    color: #7f8c8d;
    font-size: 15px;
}

.contact-additional {
    flex: 1;
    min-width: 300px;
}

.faq-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

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

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ecf0f1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    color: #7f8c8d;
    font-size: 16px;
}

.cta-simple {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.cta-simple h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-simple p {
    font-size: 16px;
    margin-bottom: 25px;
}

.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #27ae60 0%, #16a085 100%);
}

.thanks-card {
    background: white;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-card p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.order-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.order-item {
    margin-bottom: 12px;
    font-size: 16px;
    color: #34495e;
}

.thanks-message {
    font-size: 16px;
    margin-bottom: 30px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.legal-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.last-updated {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-section ul li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

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

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

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

    .card-grid,
    .insight-grid,
    .testimonial-grid,
    .services-card-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

    .about-main-card {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .form-card {
        padding: 30px 20px;
    }

    .approach-item {
        flex-direction: column;
    }

    .approach-number {
        min-width: auto;
    }
}