* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2836;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
}

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

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

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

.btn-cookie-accept {
    background: #3498db;
    color: #ffffff;
}

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

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e8edf2;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

.ad-label {
    background: #f8f9fa;
    padding: 6px 14px;
    font-size: 12px;
    color: #5a6c7d;
    border-radius: 4px;
    font-weight: 500;
}

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

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

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

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a6c7d;
}

.hero-right {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.trust-section {
    padding: 90px 20px;
    background: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
    color: #1a2836;
}

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

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

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

.insight-left {
    display: flex;
    align-items: center;
    padding: 60px 80px;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a2836;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.insight-right {
    position: relative;
}

.insight-image {
    width: 100%;
    height: 100%;
}

.insight-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-grid {
    padding: 90px 20px;
    background: #f8f9fa;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2836;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2836;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

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

.btn-service:hover {
    background: #1a2836;
}

.testimonial-section {
    padding: 80px 20px;
    background: #1a2836;
    color: #ffffff;
}

.testimonial {
    text-align: center;
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 16px;
    color: #a0aec0;
}

.form-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

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

.form-left p {
    font-size: 17px;
    color: #5a6c7d;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

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

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

.disclaimer-section {
    padding: 60px 20px;
    background: #f1f3f5;
}

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

.main-footer {
    background: #1a2836;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
}

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

.footer-col p {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
}

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

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.about-split {
    display: flex;
    padding: 90px 20px;
    gap: 60px;
}

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

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2836;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2836;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
}

.team-split {
    display: flex;
    padding: 90px 20px;
    gap: 60px;
}

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

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2836;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.team-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-section {
    padding: 90px 20px;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a2836;
}

.approach-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    gap: 50px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image,
.service-detail-content {
    flex: 1;
}

.service-detail-image {
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2836;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #5a6c7d;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #5a6c7d;
}

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

.service-pricing {
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
    margin-right: 10px;
}

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

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

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-section .cta-primary {
    background: #ffffff;
    color: #3498db;
}

.cta-section .cta-primary:hover {
    background: #f8f9fa;
}

.contact-section {
    padding: 60px 20px 90px;
}

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

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a2836;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #5a6c7d;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a2836;
}

.info-block p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 0;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.thanks-section {
    padding: 120px 20px;
    background: #f8f9fa;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a2836;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #5a6c7d;
}

.service-confirmation {
    background: #e8f4f8;
    padding: 20px;
    margin: 30px 0;
    border-radius: 6px;
    font-size: 18px;
    color: #2c3e50;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a2836;
}

.updated-date {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 40px;
}

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

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

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

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

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

@media (max-width: 968px) {
    .hero-split,
    .insight-split,
    .about-split,
    .team-split,
    .form-container,
    .contact-container,
    .service-detail-split {
        flex-direction: column;
    }

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

    .hero-left,
    .insight-left,
    .team-left {
        padding: 40px 30px;
    }

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

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

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

    .footer-col {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .main-nav {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .header-content {
        justify-content: center;
        text-align: center;
    }

    .ad-label {
        margin-top: 15px;
    }

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

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

    .section-title {
        font-size: 30px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
