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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1a3d6b;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --success-color: #27ae60;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--accent-color);
    color: white;
}

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.main-nav {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
}

.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary,
.cta-secondary,
.cta-urgent {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-primary {
    background: var(--accent-color);
    color: white;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.cta-urgent {
    background: var(--success-color);
    color: white;
    font-size: 18px;
}

.cta-urgent:hover {
    background: #229954;
    transform: scale(1.05);
}

.intro-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.benefits-visual {
    padding: 60px 20px;
    background: var(--bg-light);
}

.container-wide {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-section {
    padding: 80px 20px;
    background: white;
}

.services-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item {
    flex: 1;
    min-width: 320px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.select-service {
    width: 100%;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-centered {
    text-align: center;
    margin-top: 40px;
}

.trust-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.testimonial-block {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.testimonial {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

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

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.form-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.main-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

.main-footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.page-header {
    background: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
}

.page-header h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-header {
    background: var(--bg-light);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border-color);
}

.service-header h2 {
    color: var(--secondary-color);
    font-size: 28px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-body {
    padding: 30px;
}

.service-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-body ul {
    margin: 20px 0 20px 20px;
    color: var(--text-light);
}

.service-body ul li {
    margin-bottom: 10px;
}

.service-time {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-story,
.mission-section,
.values-section,
.team-section,
.stats-section {
    padding: 60px 20px;
}

.about-story {
    background: white;
}

.about-story h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.mission-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.mission-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.values-section {
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    background: white;
}

.team-section h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.team-section p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-list {
    margin: 20px 0 20px 30px;
    font-size: 18px;
    color: var(--text-light);
}

.team-list li {
    margin-bottom: 12px;
}

.stats-section {
    background: var(--bg-light);
}

.stats-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

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

.stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.contact-info-section {
    padding: 60px 20px;
}

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

.contact-info-box,
.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
}

.contact-info-box h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 18px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-note {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    color: var(--text-dark);
}

.map-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-box p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.map-description {
    color: var(--text-light);
}

.contact-details {
    padding: 60px 20px;
    background: var(--bg-light);
}

.contact-details h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-section {
    padding: 60px 20px;
    background: white;
}

.faq-section h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.thanks-box {
    background: white;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thanks-box h1 {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-selected {
    margin: 20px 0;
}

.service-info {
    font-size: 18px;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
}

.next-steps-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.next-steps li {
    margin-bottom: 12px;
}

.thanks-note {
    font-size: 16px;
    color: var(--text-light);
    margin: 30px 0;
}

.thanks-note a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.btn-home,
.btn-services {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home {
    background: var(--primary-color);
    color: white;
}

.btn-home:hover {
    background: var(--secondary-color);
}

.btn-services {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-services:hover {
    background: var(--primary-color);
    color: white;
}

.trust-badges {
    padding: 60px 20px;
    background: white;
}

.trust-badges h2 {
    font-size: 32px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
}

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

.badge-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.badge-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.badge-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.badge-item p {
    font-size: 15px;
    color: var(--text-light);
}

.legal-content {
    padding: 60px 20px;
    background: white;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin: 40px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.legal-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.update-date {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

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

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

    .intro-content h2,
    .services-section h2,
    .trust-section h2,
    .form-section h2,
    .final-cta h2 {
        font-size: 28px;
    }

    .container-wide {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .thanks-box {
        padding: 40px 20px;
    }

    .thanks-box h1 {
        font-size: 30px;
    }

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

    .btn-home,
    .btn-services {
        width: 100%;
    }

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