.project-link {
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);

}

.services-page {
    width: 85%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.services-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.services-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    color: var(--text-color);
    font-weight: 550;
    background: var(--main-gradient);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.service-card h3 {
    margin: 10px 0 5px;
    color: var(--text-color);

}

.service-card p {
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    line-height: 1.4
}

.msg-icon {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.mobile-icon,
.edu-icon {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.marketplaces-icon {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.social-icon {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.websites-icon {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.os-icon {
    width: 65px;
    height: auto;
    margin-bottom: 10px;
}

.service-icon {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.addition {
    padding-left: 30px;
    line-height: 1.4;
    padding-right: 30px;
    width: 85%;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.to_center {
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}