/* ============= Services Page Specific Styles ============= */

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 3.2rem;
    margin-bottom: 30px;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-intro {
    font-size: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* Services Grid Section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-yellow);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    text-align: center;
}

.service-title {
    color: var(--accent-yellow);
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.service-description {
    line-height: 1.7;
    font-size: 1.4rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.2rem;
}

.service-list li:before {
    content: "•";
    color: var(--accent-yellow);
    font-weight: bold;
    position: absolute;
    left: 10px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: rgba(0, 40, 85, 0.5);
}

.benefits-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.cta-container {
    margin-top: 30px;
}

.btn-primary {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e0ac00;
    border-color: #e0ac00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============= Responsive Design ============= */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-intro {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.3rem;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .benefits-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-intro {
        font-size: 1.1rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .benefits-text {
        font-size: 1.1rem;
    }
}