/* Services Page Specific Styles */

.services-hero {
    background-color: #f0f6ff;
    padding: 40px 0;
    text-align: center;
}

.services-hero h1 {
    color: #4285F4;
    margin-bottom: 15px;
}

.services-hero p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Cards Grid Layout */
.services-grid {
    padding: 40px 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card Base Styling */
.service-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Card Header Section */
.service-header {
    padding: 25px 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #edf3ff;
    margin-bottom: 0;
}

/* Service Icon */
.service-icon {
    color: #4285F4;
    font-size: 32px;
    margin-bottom: 10px;
}

/* Service Title */
.service-header h2 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 2px;
}

/* Service Subtitle */
.service-subtitle {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 10px;
}

/* Card Content Area */
.service-content {
    padding: 15px 15px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #ffffff;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

/* List Items */
.service-list li {
    margin-bottom: 4px;
    position: relative;
    padding-left: 15px;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

/* List Bullet Points */
.service-list li:before {
    content: "•";
    color: #4285F4;
    position: absolute;
    left: 0;
    top: -1px;
}

/* Button Styling */
.service-btn {
    display: block;
    background-color: #2a74ff;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0;
    font-size: 0.9rem;
    margin-top: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-btn:hover {
    background-color: #3367D6;
}

/* CTA Section */
.cta-section {
    background-color: #f0f6ff;
    padding: 50px 0;
    text-align: center;
    margin-top: 30px;
}

.cta-section h2 {
    color: #333;
    margin-bottom: 15px;
}

.cta-section p {
    color: #666;
    max-width: 700px;
    margin: 0 auto 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        gap: 15px;
    }
    
    .service-card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        gap: 15px;
    }
    
    .service-card {
        height: auto;
        min-height: 400px;
        max-height: 450px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
