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

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

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

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

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

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(44, 62, 80, 0.75);
    padding: 80px 0;
}

.hero-text {
    max-width: 700px;
    color: #ffffff;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-primary {
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

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

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

.intro-card p {
    color: #555;
    line-height: 1.7;
}

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

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

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    font-size: 14px;
}

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

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

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

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

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

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

.benefits-image {
    flex: 1;
    min-width: 400px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.benefits-content {
    flex: 1;
    min-width: 400px;
}

.benefits-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.benefit-item p {
    color: #555;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

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

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

.cta-secondary {
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 50px auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.modal-price {
    font-size: 24px;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

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

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

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

.footer-col h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    line-height: 1.7;
    color: #bdc3c7;
}

.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;
}

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

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

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.cookie-actions {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

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

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

.approach-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.approach-number {
    font-size: 48px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

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

.approach-card p {
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
}

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

.values-image {
    flex: 1;
    min-width: 400px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.values-content {
    flex: 1;
    min-width: 400px;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.value-item p {
    color: #555;
    line-height: 1.7;
}

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

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

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

.expertise-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.expertise-card p {
    color: #555;
    line-height: 1.7;
}

.services-detail {
    padding: 80px 0;
}

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

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

.process-timeline {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

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

.process-step p {
    color: #555;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
}

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

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

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

.contact-info > p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

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

.contact-detail p {
    color: #555;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    min-width: 400px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

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

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

.map-placeholder {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

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

.map-overlay p {
    margin: 0;
    font-size: 18px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

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

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

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

.service-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.selected-service {
    text-align: center;
}

.selected-service h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #7f8c8d;
}

.service-name {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.btn-primary {
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-secondary {
    background: #95a5a6;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.next-steps {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

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

.step-item p {
    color: #555;
    line-height: 1.7;
}

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

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

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

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
    }

    .main-nav.active {
        display: flex;
    }

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

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

    .intro-card,
    .service-card,
    .approach-card,
    .expertise-card {
        min-width: 100%;
    }

    .benefits-layout,
    .about-layout,
    .values-layout,
    .contact-layout {
        flex-direction: column;
    }

    .benefits-image,
    .about-image,
    .values-image,
    .contact-image {
        min-width: 100%;
        height: 400px;
    }

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

    .cookie-content p {
        min-width: auto;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

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