/* Services Page Styles */
.page-header {
    background: linear-gradient(135deg, #1a7a3e 0%, #155d33 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.services-content {
    padding: 60px 0;
}

.service-intro {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.intro-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.services-list-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.service-tag {
    background: #1a7a3e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9em;
}

.service-detail {
    margin-bottom: 50px;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #1a7a3e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 2.5em;
    color: #1a7a3e;
}

.service-header h2,
.service-header h3 {
    color: #2c3e50;
    margin: 0;
}

.service-description {
    font-size: 1.05em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.category-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.category-card h4 {
    color: #2c3e50;
    margin: 0;
}

.category-card i {
    color: #1a7a3e;
    margin-right: 10px;
}

.highlight-box {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a7a3e;
    margin-top: 20px;
}

.highlight-box p {
    margin: 0;
    color: #2c3e50;
}

.highlight-box i {
    color: #1a7a3e;
    margin-right: 10px;
}

.objectives-list {
    margin-top: 20px;
}

.objectives-list h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.objectives-list ul {
    list-style: none;
    padding: 0;
}

.objectives-list li {
    padding: 10px 0;
    color: #555;
    font-size: 1.05em;
}

.objectives-list i {
    color: #1a7a3e;
    margin-right: 10px;
}

.additional-services {
    margin-top: 60px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 1px solid #bdc3c7;
}

.cta-section {
    background: linear-gradient(135deg, #1a7a3e 0%, #155d33 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #1a7a3e;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.1em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}