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

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

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
    margin: 0 15px;
}

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

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

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

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

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

.hero-section {
    margin-top: -2px;
}

.hero-image {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52,73,94,0.85) 0%, rgba(44,62,80,0.7) 100%);
    display: flex;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s;
    margin-left: 15px;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

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

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

.intro-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.value-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.value-section.dark {
    background-color: #34495e;
    color: #ecf0f1;
}

.value-section.dark h3 {
    color: #fff;
}

.value-section.dark p {
    color: #bdc3c7;
}

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.services-preview {
    padding: 90px 0;
    background-color: #fff;
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-select-service {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.selected-service-display {
    background-color: #e8f8f5;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c3e50;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

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

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

.trust-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ecf0f1;
}

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

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #bdc3c7;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 15px;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

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

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

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

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44,62,80,0.98);
    color: #fff;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-cookie:hover {
    opacity: 0.9;
}

.page-hero {
    background-color: #34495e;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    color: #bdc3c7;
}

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

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

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

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

.philosophy-section.dark {
    background-color: #2c3e50;
    color: #ecf0f1;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.philosophy-section.dark h2 {
    color: #fff;
}

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

.philosophy-section.dark p {
    color: #bdc3c7;
}

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

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

.expertise-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.expertise-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.expertise-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

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

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    font-size: 17px;
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.cta-section.dark {
    background-color: #34495e;
    color: #fff;
}

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

.cta-section.dark h2 {
    color: #fff;
}

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

.cta-section.dark p {
    color: #bdc3c7;
}

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

.service-detail {
    margin-bottom: 80px;
}

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

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

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    display: block;
}

.service-info {
    flex: 1;
}

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

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

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

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

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

.service-pricing {
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.contact-info-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.contact-details {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    background-color: #e8f8f5;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #27ae60;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.contact-additional p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

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

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

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

.thanks-details {
    background-color: #e8f8f5;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    border-left: 4px solid #27ae60;
}

.thanks-details p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.thanks-next {
    margin-bottom: 50px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 15px 0 15px 50px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 35px;
    height: 35px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.legal-page {
    padding: 60px 0;
    background-color: #fff;
}

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

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
}

@media (max-width: 768px) {
    .nav {
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .ad-disclosure {
        order: -1;
        width: 100%;
        text-align: center;
        margin: 0 0 10px 0;
    }

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

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

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

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

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

    .cta-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}