.main-services {
    padding: 80px 20px;
    background-color: #f4f8fb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.text-column {
    text-align: left;
}

.text-column h2 {
    font-size: 3rem;
    color: #0056ff;
    margin-bottom: 20px;
    font-weight: 700;
}

.text-column p {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-column .cta-link {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    background-color: #0056ff;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.text-column .cta-link:hover {
    background-color: #003cb0;
}

.image-column {
    text-align: center;
}

.image-column img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.service-card .icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #0056ff;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-card p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-row {
        grid-template-columns: 1fr;
    }

    .text-column {
        text-align: center;
    }

    .text-column h2 {
        font-size: 2.5rem;
    }
}
