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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

.header {
    background-color: #2c3e50;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-label {
    color: #ecf0f1;
    font-size: 12px;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.hero-section {
    position: relative;
    min-height: 600px;
    background-color: #34495e;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-overlay h1 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    color: #ecf0f1;
    font-size: 22px;
    font-weight: 300;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

.problem-section {
    padding: 100px 0;
    background-color: #ecf0f1;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.split-image {
    flex: 1;
    background-color: #bdc3c7;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-section {
    padding: 90px 0;
    background-color: #3498db;
    color: #fff;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #bdc3c7;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-card p {
    font-size: 16px;
    margin: 0 20px 15px;
    color: #666;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    margin: 15px 20px;
}

.btn-select {
    display: block;
    width: calc(100% - 40px);
    margin: 20px;
    padding: 12px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-select.selected {
    background-color: #27ae60;
}

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

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.trust-section {
    padding: 100px 0;
    background-color: #34495e;
    color: #fff;
}

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

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.step p {
    font-size: 16px;
    color: #ecf0f1;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    text-align: center;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #ecf0f1;
    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;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
}

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

.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;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

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

.services-detail {
    padding: 80px 0;
    background-color: #fff;
}

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

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

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

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

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

.service-price-box {
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #bdc3c7;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #7f8c8d;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-left: 15px;
    transition: background-color 0.3s;
}

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

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

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

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: #bdc3c7;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 90px 0;
    background-color: #ecf0f1;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
}

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

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

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

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

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

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

.experience-section {
    padding: 90px 0;
    background-color: #34495e;
    color: #fff;
}

.experience-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

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

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

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

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

.email-display {
    color: #555;
}

.contact-details {
    flex: 1;
}

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

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

.contact-cta {
    margin-top: 30px;
}

.location-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

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

.location-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #fff;
    min-height: 60vh;
}

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

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

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

.service-confirm {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.selected-service {
    font-size: 18px;
    color: #2c3e50;
}

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

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

.thanks-steps {
    padding-left: 20px;
}

.thanks-steps li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-actions {
    margin-top: 40px;
}

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

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

.legal-intro {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.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;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.gdpr-table th,
.gdpr-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.gdpr-table th {
    background-color: #34495e;
    color: #fff;
    font-weight: 600;
}

.gdpr-table td {
    font-size: 15px;
    color: #555;
}

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

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

    .split-content,
    .about-content,
    .contact-grid,
    .service-detail-card {
        flex-direction: column;
    }

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

    .nav {
        gap: 15px;
    }

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

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

    .process-steps,
    .approach-steps {
        flex-direction: column;
    }

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

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