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

img {
    object-fit: cover;
}

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

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

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

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

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.split-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.content-split {
    display: flex;
}

.experience-split {
    display: flex;
    background-color: #f8f9fa;
}

.services-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

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

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

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

.service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-selected {
    background-color: #e8f4f8;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 16px;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef9e7;
    border-top: 2px solid #f9e79f;
    border-bottom: 2px solid #f9e79f;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f6000;
    line-height: 1.8;
    text-align: justify;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: #34495e;
}

.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-hero-overlay {
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    text-align: center;
}

.page-hero-simple {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 18px;
    color: #7f8c8d;
}

.text-centered-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.text-centered-section p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.8;
}

.values-split-grid {
    display: flex;
    flex-wrap: wrap;
    background-color: #f8f9fa;
}

.value-item {
    flex: 1 1 50%;
    min-width: 400px;
    padding: 60px;
    border: 1px solid #ecf0f1;
}

.value-item:nth-child(odd) {
    background-color: #ffffff;
}

.value-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

.team-split {
    display: flex;
    gap: 40px;
    align-items: center;
}

.team-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.team-description {
    flex: 1;
}

.team-description p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-section-centered {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-section-centered p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

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

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

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

.service-detail-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

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

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

.service-duration {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 24px;
}

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

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

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-radius: 8px;
}

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

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

.contact-text-section p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.8;
}

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

.thanks-content {
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.thanks-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #5a6c7d;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .experience-split,
    .content-split,
    .team-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

    .value-item {
        min-width: 100%;
    }

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

    .hero-text h1 {
        font-size: 36px;
    }

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

    .nav {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }
}