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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.navbar {
    padding: 16px 0;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    background: #f8f9fa;
}

.hero-section {
    position: relative;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(44, 62, 80, 0.75);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #ecf0f1;
}

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
}

.intro-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.intro-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.stats-section {
    padding: 60px 0;
    background: #2c3e50;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-card {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
}

.visual-break {
    width: 100%;
    overflow: hidden;
    background: #34495e;
}

.visual-break img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

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

.services-intro h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.services-list {
    background: #ffffff;
}

.service-block {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
}

.service-left {
    flex-direction: row;
}

.service-right {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

.service-image {
    flex: 1;
    min-width: 0;
    background: #ecf0f1;
}

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

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

.service-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

.service-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #34495e;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service {
    align-self: flex-start;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
}

.insights-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.insights-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
}

.insights-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.testimonial-section {
    padding: 80px 0;
    background: #2c3e50;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonial-quote {
    text-align: center;
    color: #ffffff;
}

.testimonial-quote p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

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

.approach-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.approach-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding: 24px;
    background: #1a252f;
}

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

.page-header {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

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

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

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #34495e;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #34495e;
}

.page-content ul,
.page-content ol {
    margin: 16px 0 16px 24px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #34495e;
}

.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 300px;
}

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

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h3 {
    font-size: 16px;
    font-weight: 700;
    color: #7f8c8d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
}

.services-page-section {
    padding: 60px 0;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

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

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.service-card .service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.about-content-section {
    padding: 80px 0;
}

.about-content-section:nth-child(even) {
    background: #f8f9fa;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.values-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 28px;
    background: #ffffff;
    border-left: 4px solid #3498db;
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 32px;
    line-height: 1.6;
}

.thanks-content .service-info {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.thanks-content a {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

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

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

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

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

    .service-block {
        flex-direction: column !important;
    }

    .service-text {
        padding: 40px 24px;
    }

    .service-image img {
        height: 300px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

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