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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-split {
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
}

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

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

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

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

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

.intro-split {
    background-color: #ffffff;
}

.services-preview {
    background-color: #f8f9fa;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.service-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

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

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

.service-card .price {
    font-size: 18px;
    font-weight: 700;
    color: #3498db;
}

.process-section {
    background-color: #ffffff;
}

.process-list {
    list-style: none;
    margin-top: 25px;
}

.process-list li {
    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.process-list strong {
    color: #2c3e50;
    font-weight: 600;
}

.form-section {
    background-color: #f8f9fa;
}

.split-form {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.main-form label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.main-form input,
.main-form select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    line-height: 1.5;
}

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

.cookie-banner.show {
    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;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-header {
    background-color: #2c3e50;
    padding: 80px 20px;
    text-align: center;
}

.header-content h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 18px;
    color: #ecf0f1;
}

.services-detailed {
    background-color: #ffffff;
}

.service-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.service-split:last-child {
    border-bottom: none;
}

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

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

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

.service-content {
    flex: 1;
}

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

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

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

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
}

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

.price-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid #3498db;
}

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

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

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

.cta-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.about-intro,
.values-section,
.expertise-section,
.commitment-section {
    background-color: #ffffff;
}

.value-list {
    list-style: none;
    margin-top: 20px;
}

.value-list li {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.value-list strong {
    color: #2c3e50;
    font-weight: 600;
}

.contact-section {
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 35px;
}

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

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

.contact-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.selected-service {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2e7d32;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

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

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

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

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
}

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

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

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #3498db;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #3498db;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.legal-content {
    background-color: #ffffff;
    padding: 60px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-container h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-container h3 {
    font-size: 20px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

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

.legal-container ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-container li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.last-updated {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content,
    .split-container,
    .service-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .split-text h2,
    .service-content h2 {
        font-size: 28px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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