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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-notice {
    background: #ffe4e1;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #d63447;
    font-weight: 500;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

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

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

.hero-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-content {
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e0e7ff;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.intro-card {
    background: white;
    padding: 35px 25px;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.intro-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.intro-card p {
    color: #666;
    font-size: 1rem;
}

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

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1 1 400px;
    background-color: #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text {
    flex: 1 1 400px;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

.services-preview {
    padding: 70px 0;
    background: #f0f4f8;
}

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

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    flex: 1 1 280px;
    max-width: 320px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.03);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-body p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.cta-btn {
    background: #3498db;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.benefits-section {
    padding: 70px 0;
    background: white;
}

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

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

.benefit-item {
    flex: 1 1 45%;
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.benefit-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.benefit-item p {
    color: #666;
    font-size: 0.98rem;
}

.form-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-card {
    background: white;
    padding: 45px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-card p {
    margin-bottom: 25px;
    color: #666;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background: #27ae60;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

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

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

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

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

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

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

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

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: #bdc3c7;
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px 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;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept {
    background: #27ae60;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.btn-reject {
    background: #7f8c8d;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

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

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: white;
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1 1 400px;
    background-color: #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-detail-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.feature-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #555;
    font-size: 0.98rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.large-cta-btn {
    background: white;
    color: #3498db;
    padding: 16px 50px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.large-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.about-story {
    padding: 70px 0;
    background: white;
}

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

.about-content {
    flex: 1 1 450px;
}

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

.about-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

.about-image {
    flex: 1 1 400px;
    background-color: #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.value-card {
    flex: 1 1 45%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    color: #666;
    font-size: 1rem;
}

.team-section {
    padding: 70px 0;
    background: white;
}

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

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

.team-text {
    flex: 1 1 450px;
}

.team-text p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

.team-image {
    flex: 1 1 400px;
    background-color: #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievements-section {
    padding: 70px 0;
    background: #f8f9fa;
}

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

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

.achievement-item {
    flex: 1 1 22%;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.achievement-item p {
    color: #666;
    font-size: 0.95rem;
}

.approach-section {
    padding: 70px 0;
    background: white;
}

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

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-card {
    flex: 1 1 45%;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-card p {
    color: #666;
    font-size: 1rem;
}

.contact-section {
    padding: 60px 0;
    background: white;
}

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 400px;
}

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

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-image {
    flex: 1 1 450px;
    background-color: #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.location-section h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.location-description {
    margin-bottom: 40px;
}

.location-description p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

.map-placeholder {
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 70px 0;
    background: white;
}

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

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

.faq-item {
    flex: 1 1 45%;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

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

.faq-item p {
    color: #666;
    font-size: 1rem;
}

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

.thanks-card {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

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

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

.thanks-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.service-confirmation p {
    margin: 0;
    color: #27ae60;
    font-weight: 600;
}

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

.secondary-btn {
    background: #7f8c8d;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.next-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.step-item {
    flex: 1 1 280px;
    max-width: 320px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    color: #666;
    font-size: 0.98rem;
}

.legal-page {
    padding: 60px 0;
    background: white;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.update-date {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    margin-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

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

    .benefit-item,
    .value-card,
    .step-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .approach-steps,
    .values-grid,
    .benefits-grid {
        flex-direction: column;
    }
}
