/* Styles for the service content */
.service-content {
    font-family: 'Space Grotesk', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 100px auto;
    padding: 0 0 40px 0;
    max-width: 1200px;
}

.service-content h1 {
    color: #1e3a8a;
    text-align: center;
    font-size: 2.5rem;
    margin: 30px 0;
    font-weight: 700;
}

.service-content h2 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.service-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

/* Section styling */
.service-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid #1e3a8a;
}

.intro-section {
    background-color: #f8faff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    border-bottom: 4px solid #1e3a8a;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Challenges section */
.service-section.challenges ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
}

.service-section.challenges li {
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #f8faff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 35px;
}

.service-section.challenges li:before {
    content: "❗";
    position: absolute;
    left: 10px;
    color: #1e3a8a;
}

/* Solutions section */
.service-section.solutions ol {
    counter-reset: solution-counter;
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
}

.service-section.solutions li {
    counter-increment: solution-counter;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f8faff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 40px;
}

.service-section.solutions li:before {
    content: counter(solution-counter);
    position: absolute;
    left: 10px;
    top: 15px;
    background-color: #1e3a8a;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    background-color: #f8faff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

/* Industries grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.industry-item {
    background-color: #f8faff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.industry-item i {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.industry-item h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #4f72c4 100%);
    color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-section a {
    color: white;
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #1e3a8a !important;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #f8faff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-content h1 {
        font-size: 2rem;
    }
    
    .service-content h2 {
        font-size: 1.5rem;
    }
    
    .benefits-grid, .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .service-section {
        padding: 20px;
    }
    
    .cta-section {
        padding: 25px 15px;
    }
}
