.page-dark-bg {
    background-color: #0d2858;
    color: #FFFFFF;
    min-height: 100vh;
    padding-bottom: 80px;
    font-family: 'Open Sans', sans-serif;
}

.service-hero {
    padding: 60px 0 40px 0;
}

.hero-grid {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 40px; 
    max-width: 1000px;
    margin: 0 auto; 
}

.hero-img-wrapper {
    flex: 0 0 auto;
}

.hero-img-wrapper img {
    max-width: 350px; 
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 140, 219, 0.2)); 
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.btn-action {
    display: inline-block;
    background-color: #008CDB; 
    color: #FFFFFF;
    padding: 12px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-action:hover {
    background-color: #00aaff;
    transform: translateY(-2px);
}

.content-section {
    padding: 20px 0;
}

.text-container {
    max-width: 900px; 
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8; 
    color: #e6e6e6;
    text-align: left; 
}

.text-container p {
    margin-bottom: 25px;
}

.call-to-action-text {
    margin-top: 40px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column; 
        text-align: center;
        gap: 20px;
    }

    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-img-wrapper img {
        max-width: 250px; 
    }
}