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

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

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 4px;
    margin: 0 20px;
}

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

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

.nav a:hover {
    color: #1a5f7a;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 20px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 15px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    border-bottom: 1px solid #ecf0f1;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.25rem;
    color: #ecf0f1;
    max-width: 700px;
}

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

.intro-content h2 {
    font-size: 2.2rem;
    color: #1a5f7a;
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
}

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

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    border-radius: 8px;
}

.problem-card h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.problem-card p {
    color: #34495e;
}

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

.insight-content-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.insight-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-text {
    flex: 1;
    min-width: 300px;
}

.insight-text h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 25px;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
}

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

.services-preview h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 250px;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.service-content p {
    color: #34495e;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 12px 24px;
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #144b5f;
}

.select-service-btn:active {
    transform: scale(0.98);
}

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

.trust-section h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a5f7a;
}

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

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

.form-wrapper h2 {
    font-size: 2.2rem;
    color: #1a5f7a;
    margin-bottom: 20px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #34495e;
}

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

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #144b5f;
}

.submit-btn:active {
    transform: scale(0.98);
}

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

.disclaimer-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #1a5f7a;
}

.disclaimer-box h3 {
    font-size: 1.4rem;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.disclaimer-box p {
    color: #34495e;
    font-size: 0.95rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #6c7a7b;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.thanks-container h1 {
    color: #1a5f7a;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-container p {
    color: #34495e;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.thanks-container .service-info {
    background: #ffffff;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    border-left: 4px solid #1a5f7a;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #144b5f;
}

.page-header {
    background: linear-gradient(135deg, #1a5f7a, #2c3e50);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    color: #1a5f7a;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.page-content p {
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

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

.page-content ul li {
    margin-bottom: 10px;
    color: #34495e;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    color: #1a5f7a;
    margin-bottom: 20px;
}

.contact-info p {
    color: #34495e;
    margin-bottom: 15px;
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .insight-content-wrapper {
        flex-direction: column;
    }

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

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
    }

    .problem-cards {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .header-content {
        justify-content: space-between;
    }

    .ad-notice {
        order: 3;
        width: 100%;
        text-align: center;
        margin: 10px 0 0 0;
    }
}