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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav {
    display: flex;
    gap: 35px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

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

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

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

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

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

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

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

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

.intro-section,
.trust-section,
.technology-section {
    padding: 80px 40px;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-left,
.content-right {
    flex: 1;
}

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e9ecef;
}

.content-left h2,
.content-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-left p,
.content-right p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-overview {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-image {
    background-color: #e9ecef;
    overflow: hidden;
    height: 240px;
}

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    padding: 0 24px 12px;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
}

.form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #5a6c7d;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: #5a6c7d;
}

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

.form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.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: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

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

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

.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 ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 10px auto 0;
    line-height: 1.5;
}

.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: 1000;
    display: none;
}

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

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

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

.page-hero .hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.about-intro,
.team-section,
.technology-section {
    padding: 80px 40px;
}

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
}

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

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

.commitment-section {
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.centered-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #ffffff;
}

.commitment-section .centered-content h2 {
    color: #ffffff;
}

.centered-content p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.commitment-section .centered-content p {
    color: #ecf0f1;
}

.centered-content .cta-primary {
    margin-top: 20px;
}

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

.service-detail-item {
    padding: 60px 40px;
}

.service-detail-item:nth-child(even) {
    background-color: #f8f9fa;
}

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

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: #5a6c7d;
}

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

.service-price-box {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
    text-align: center;
}

.service-detail-item:nth-child(even) .service-price-box {
    background-color: #ffffff;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

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

.price-unit {
    font-size: 16px;
    color: #5a6c7d;
}

.cta-section {
    padding: 80px 40px;
    background-color: #3498db;
    color: #ffffff;
}

.cta-section .centered-content h2 {
    color: #ffffff;
}

.cta-section .centered-content p {
    color: #ecf0f1;
}

.contact-section {
    padding: 80px 40px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

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

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.note {
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
    margin-top: 8px;
}

.map-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    height: 400px;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #5a6c7d;
}

.why-contact-section {
    padding: 80px 40px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
}

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

.benefit-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 40px;
    min-height: 60vh;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation {
    font-size: 16px;
    color: #2c3e50;
}

.next-steps {
    margin: 60px 0;
}

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

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    text-align: left;
}

.step-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 260px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.step-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-info {
    background-color: #e8f4fd;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

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

.legal-page {
    padding: 80px 40px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 32px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

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

    .form-container-split {
        flex-direction: column;
    }

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

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

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

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

    .values-grid,
    .benefits-grid,
    .steps-grid {
        flex-direction: column;
    }

    .value-item,
    .benefit-item,
    .step-item {
        flex: 1 1 100%;
    }

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