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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a90b5;
    --accent-color: #7eb8d8;
    --dark-color: #1a3a4f;
    --light-color: #f4f8fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --success-color: #28a745;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

.ad-disclosure {
    background-color: var(--light-color);
    color: var(--text-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s;
}

.hero {
    margin-top: 0;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.9), rgba(74, 144, 181, 0.8));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

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

.intro-cards {
    padding: 80px 0;
    background-color: var(--light-color);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.card-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

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

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

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-image {
    flex: 0 0 350px;
    background-size: cover;
    background-position: center;
    background-color: var(--light-color);
}

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
}

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

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

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

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

.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 60px 0 30px;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.disclaimer {
    font-size: 0.85rem;
    margin-top: 15px;
    padding: 0 20px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: #fff;
}

.btn-accept:hover {
    background-color: #218838;
}

.btn-reject {
    background-color: #6c757d;
    color: #fff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

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

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 25px;
}

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

.about-image {
    flex: 0 0 450px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    background-color: var(--light-color);
}

.values-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.approach-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.approach-image {
    flex: 0 0 450px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    background-color: var(--light-color);
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 25px;
}

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

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

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 400px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: var(--light-color);
}

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

.service-detail-content h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

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

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-color);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-detail-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 25px 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
}

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

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

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

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.contact-detail h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin: 40px 0 20px;
}

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

.legal-text p {
    color: var(--text-color);
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0 15px 30px;
    color: var(--text-color);
}

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

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

.cookies-table th {
    background-color: var(--light-color);
    color: var(--dark-color);
    font-weight: 600;
}

.thanks-section {
    padding: 120px 0;
    background-color: var(--light-color);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.thanks-details p {
    color: var(--text-color);
    margin: 10px 0;
}

.thanks-details strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .hero-image {
        height: 400px;
    }

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

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 250px;
        width: 100%;
    }

    .about-layout,
    .approach-layout {
        flex-direction: column;
    }

    .about-image,
    .approach-image {
        flex: 0 0 300px;
        width: 100%;
    }

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 250px;
        width: 100%;
    }

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

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

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

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