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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: #3498db;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

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

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

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

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 4px 10px;
    border-radius: 3px;
}

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

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-right {
    flex: 1;
    background-color: #e8edf2;
}

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

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

.cta-primary:hover {
    background-color: #1a252f;
}

.intro-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.intro-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

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

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

.split-image-left,
.split-image-right {
    flex: 1;
    background-color: #e8edf2;
}

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

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

.split-content-left {
    background-color: #f8f9fa;
}

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

.split-feature h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-feature p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #4a5568;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 32px 0 24px;
    padding: 20px;
    background-color: rgba(52, 152, 219, 0.05);
    border-left: 4px solid #3498db;
}

.price-label {
    font-weight: 600;
    color: #2c3e50;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

.btn-select-service {
    padding: 14px 32px;
    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-service:hover {
    background-color: #2980b9;
}

.testimonial-inline {
    padding: 80px 40px;
    background-color: #2c3e50;
}

.testimonial-inline blockquote {
    border-left: none;
}

.testimonial-inline p {
    font-size: 22px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
}

.trust-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.trust-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.premium-service {
    padding: 100px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.premium-service h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #ffffff;
}

.premium-service p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.service-price-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 32px;
    padding: 28px;
    background-color: rgba(52, 152, 219, 0.15);
    border-left: 4px solid #3498db;
}

.service-price-large .price-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.service-price-large .price-value {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-section > div > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a5568;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.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 #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
}

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

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #3498db;
}

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

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

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

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

.thanks-service {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-service strong {
    color: #2c3e50;
}

.btn-back {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

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

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

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

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

.contact-page h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

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

.services-page h1 {
    font-size: 40px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

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

.service-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #4a5568;
}

.service-details .service-price {
    margin: 0 0 24px 0;
}

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

.about-page h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

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

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

.about-image {
    margin: 48px 0;
    background-color: #e8edf2;
}

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

@media (max-width: 768px) {
    .hero-split,
    .split-feature,
    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .hero-left,
    .split-content-left,
    .split-content-right,
    .service-details {
        padding: 40px 24px;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .navbar {
        padding: 16px 24px;
    }
}
