* {
    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;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

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

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

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
    background-color: #f8f9fa;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
    max-width: 540px;
}

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

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

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

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

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

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

.split-section {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5%;
}

.split-left {
    background-color: #ecf0f1;
    overflow: hidden;
}

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

.split-section.reverse .split-left {
    background-color: #ffffff;
}

.split-section.reverse .split-right {
    background-color: #ecf0f1;
    overflow: hidden;
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.split-right p,
.split-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.form-section {
    background-color: #f8f9fa;
    padding: 80px 5%;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h3 {
    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;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    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: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-header {
    text-align: center;
    padding: 80px 5% 60px;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #555;
}

.full-width-cta {
    text-align: center;
    padding: 80px 5%;
    background-color: #3498db;
    color: #ffffff;
}

.full-width-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.full-width-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.full-width-cta .btn-primary {
    background-color: #ffffff;
    color: #3498db;
}

.full-width-cta .btn-primary:hover {
    background-color: #ecf0f1;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 5%;
    justify-content: center;
}

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

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #555;
}

.service-card .price-tag {
    margin: 16px 24px;
    font-size: 28px;
}

.service-card .btn-secondary {
    margin: 0 24px 24px;
    display: block;
    text-align: center;
}

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

.features-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

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

.info-section {
    background-color: #f8f9fa;
    padding: 80px 5%;
}

.info-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #2c3e50;
    font-weight: 700;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.contact-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 60px 5%;
    background-color: #ffffff;
}

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

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

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-block .note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
    font-style: italic;
}

.contact-map {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-container {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

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

.thanks-detail {
    font-size: 16px;
    color: #666;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin: 32px 0;
    font-size: 15px;
    color: #2c3e50;
}

.thanks-next {
    text-align: left;
    margin: 40px 0;
    padding: 24px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

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

.thanks-next ul li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    color: #555;
}

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5% 80px;
}

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

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

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

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

.legal-page ul {
    margin: 16px 0 16px 20px;
    padding-left: 20px;
}

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

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

    .split-section.reverse {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 36px;
    }

    .nav-right {
        gap: 20px;
    }

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

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

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

    .info-item {
        flex: 1 1 100%;
    }

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

@media (max-width: 600px) {
    .nav-split {
        flex-direction: column;
        gap: 16px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .split-right h2,
    .split-left h2 {
        font-size: 28px;
    }

    .form-container {
        padding: 32px 24px;
    }

    .thanks-content {
        padding: 40px 24px;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .legal-page h2 {
        font-size: 24px;
    }
}