/* Services Section */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    margin-bottom: 60px;
}

.service-card {
    text-align: center;
    padding: 60px 40px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card .service-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card.dark {
    background: #0e2a47;
    color: #fff;
}

.service-card.dark:nth-child(2) {
    background: #1a3d5f;
}

.service-card.light {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.partner-section {
    background: #1a3d5f;
    color: #fff;
    padding: 60px 20px;
    border-radius: 8px;
}

.partner-section a {
    color: #fff;
    text-decoration: underline;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #ddd;
}

.service-card.light h4 {
    color: #666;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}
