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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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 {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a252f;
}

.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 {
    background: #ecf0f1;
    padding: 6px 12px;
    font-size: 12px;
    color: #7f8c8d;
    border-radius: 4px;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 80px 60px;
    background: #f8f9fa;
}

.split-right {
    background: #e8ecef;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 560px;
}

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

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

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

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

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

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a252f;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: #546e7a;
}

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

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

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

.split-content .split-left {
    padding: 60px;
    background: #ffffff;
}

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

.split-content .split-right {
    padding: 60px;
    background: #f8f9fa;
}

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

.split-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a252f;
}

.content-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #546e7a;
}

.service-list {
    margin-top: 32px;
}

.service-item {
    margin-bottom: 28px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a252f;
}

.service-item p {
    font-size: 15px;
    margin-bottom: 12px;
    color: #546e7a;
}

.service-item .price {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-top: 16px;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #2980b9;
}

.full-width-bg {
    background: linear-gradient(rgba(26, 37, 47, 0.85), rgba(26, 37, 47, 0.85)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.overlay-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.overlay-content p {
    font-size: 19px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.process-steps {
    margin-top: 24px;
    padding-left: 20px;
}

.process-steps li {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.process-steps strong {
    color: #1a252f;
}

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

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

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a252f;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

.testimonial-card .author {
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

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

.cta-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a252f;
}

.cta-section > div > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #546e7a;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a252f;
}

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

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

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

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

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

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

.footer {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #95a5a6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

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

.page-header h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #1a252f;
}

.page-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
}

.services-grid-section {
    padding: 60px 40px;
    background: #ffffff;
}

.service-card-detailed {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    align-items: center;
}

.service-card-detailed.reverse {
    flex-direction: row-reverse;
}

.service-card-image {
    flex: 1;
    min-width: 400px;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card-content {
    flex: 1;
}

.service-card-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-card-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #546e7a;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #546e7a;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

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

.about-intro {
    padding: 80px 40px;
    background: #ffffff;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-split-image {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-split-content {
    flex: 1;
}

.about-split-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a252f;
}

.about-split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #546e7a;
}

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #546e7a;
}

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

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a252f;
}

.info-item {
    margin-bottom: 24px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a252f;
}

.info-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #f8f9fa;
}

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

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

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

.thanks-detail {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-detail p {
    margin-bottom: 8px;
    font-size: 15px;
}

.thanks-detail strong {
    color: #1a252f;
}

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

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a252f;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #546e7a;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #546e7a;
}

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

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .service-card-detailed,
    .service-card-detailed.reverse {
        flex-direction: column;
    }

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

    .about-split,
    .contact-split {
        flex-direction: column;
    }
}