/* Services Page Styles */

.service-card {
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.yellow-border {
    border-bottom: 3px solid #FBB039;
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.outline-button-yellow {
    background: transparent;
    border: 2px solid #FBB039;
    color: #333;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 2rem 0;
}

.outline-button-yellow:hover {
    background: #FBB039;
    color: white;
    transform: translateY(-2px);
}

.half-page-div {
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
}

.half-page-div:last-child {
    border-bottom: none;
}

.half-page-div h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.half-page-div p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.col-img-max {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .half-page-div {
        padding: 2rem 0;
    }
    
    .half-page-div h3 {
        font-size: 1.75rem;
    }
    
    .half-page-div p {
        font-size: 1rem;
    }
    
    .col-img-max {
        margin-bottom: 1.5rem;
    }
}
