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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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-light);
}

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

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: var(--secondary-color);
}

.hero-card {
    margin-bottom: 40px;
}

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

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 80px 0;
}

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

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

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
}

.intro-section {
    padding: 60px 0;
}

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

.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card img {
    width: 100%;
    height: 250px;
    display: block;
}

.card-body {
    padding: 30px;
}

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

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

.services-preview {
    background: var(--bg-white);
    padding: 60px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.service-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 35px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.service-card.highlighted {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-card.highlighted h4,
.service-card.highlighted .price {
    color: white;
}

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

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card.highlighted p {
    color: rgba(255, 255, 255, 0.9);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.btn-select {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
}

.btn-select:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.service-card.highlighted .btn-select {
    background: white;
    color: var(--primary-color);
}

.service-card.highlighted .btn-select:hover {
    background: var(--bg-light);
}

.why-section {
    padding: 60px 0;
}

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

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

.split-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-section {
    padding: 60px 0;
}

.form-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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(--secondary-color);
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.disclaimer-card {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 25px;
}

.disclaimer-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #856404;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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;
    min-width: 250px;
    font-size: 14px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-cookie {
    background: var(--success-color);
    color: white;
}

.btn-cookie:hover {
    background: #229954;
    transform: scale(1.05);
}

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

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.services-detailed {
    padding: 40px 0;
}

.service-detail-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

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

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

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

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

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.about-intro {
    padding: 60px 0;
}

.about-content-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.about-image img {
    width: 100%;
    border-radius: 8px;
}

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.values-section {
    padding: 60px 0;
    background: var(--bg-white);
}

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

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

.value-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 35px;
    flex: 1;
    min-width: 250px;
    box-shadow: var(--shadow-sm);
}

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

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

.team-section {
    padding: 60px 0;
}

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

.process-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.process-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 280px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

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

.process-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.process-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

.stats-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.stats-card {
    text-align: center;
}

.stats-card h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

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

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

.approach-section {
    padding: 60px 0;
}

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

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

.approach-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

.contact-info-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

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

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

.contact-map-card img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.faq-section {
    padding: 60px 0;
    background: var(--bg-white);
}

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

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

.faq-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    box-shadow: var(--shadow-sm);
}

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

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

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

.thanks-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-details {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next {
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    color: var(--text-light);
    line-height: 1.7;
    padding-top: 8px;
}

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

.btn-secondary {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

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

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

.legal-content {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

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

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

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .content-split,
    .approach-split,
    .about-content-card,
    .contact-layout {
        flex-direction: column;
    }

    .form-card {
        padding: 30px 20px;
    }

    .legal-content {
        padding: 30px 20px;
    }

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

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

    .cta-card {
        padding: 40px 20px;
    }

    .cta-card h2 {
        font-size: 28px;
    }
}