body {
    font-family: 'Segoe UI', sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, #ff7a00, #ff4d00);
    color: white;
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2rem;
    margin-top: 20px;
}

.btn-primary-custom {
    background-color: #d80000;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    margin-top: 25px;
}

.btn-primary-custom:hover {
    background-color: #b30000;
}

.partners img {
    max-height: 60px;
    margin: 20px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.partners img:hover {
    filter: grayscale(0%);
}
.service-card {
    background: #ffffff;
    padding: 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h5 {
    font-weight: 700;
    font-size: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 14px;
}

.service-card ul li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.divider {
    width: 40px;
    height: 3px;
    background: red;
    margin: 10px auto 20px;
}

.btn-service {
    background-color: #ff7a00;
    color: white;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
}

.btn-service:hover {
    background-color: #e56700;
    color: white;
}