* {
    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: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px 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;
    letter-spacing: -0.5px;
}

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

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

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

.ad-notice {
    font-size: 11px;
    color: #95a5a6;
    border: 1px solid #e0e0e0;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu a {
    color: #2c3e50;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    font-weight: 500;
}

.mobile-menu.active {
    display: flex;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 54px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 32px;
    opacity: 0.95;
}

.cta-primary {
    background-color: #ffffff;
    color: #2c3e50;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.story-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.story-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.story-content {
    padding: 32px;
}

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

.story-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

.insight-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

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

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

.insight-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #d0d0d0;
    margin: 40px 0;
    border-radius: 12px;
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.service-icon {
    margin-bottom: 20px;
}

.icon-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    border-radius: 10px;
}

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

.service-card p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

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

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

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

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

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

.testimonial-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

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

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

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

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

.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 #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

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

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

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

.disclaimer {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

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

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col p,
.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

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

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

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

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

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

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

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

.about-text p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    border-radius: 12px;
}

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

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

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

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #3498db;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.team-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.team-section p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.mission-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.mission-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.mission-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #d0d0d0;
    border-radius: 12px;
}

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

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

.mission-text p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

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

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

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

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

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

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

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

.service-detail-content p {
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.service-detail-content li {
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

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

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

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

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

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

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

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

.map-placeholder {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    border-radius: 12px;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.85);
    color: #ffffff;
    padding: 20px;
    border-radius: 0 0 12px 12px;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
}

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

.faq-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.faq-item {
    background-color: #ffffff;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

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

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #3498db;
}

.service-confirmation p {
    margin: 8px 0;
    color: #2c3e50;
    font-size: 16px;
}

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

.thanks-info h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-info ul {
    padding-left: 20px;
}

.thanks-info li {
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

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

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.legal-page strong {
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .service-detail-image {
        height: 300px;
        width: 100%;
    }

    .about-layout,
    .mission-layout {
        flex-direction: column;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}