.vxr_tpl_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vxr_tpl_section_title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    color: #333;
}

.vxr_tpl_btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vxr_tpl_btn_primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.vxr_tpl_btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.vxr_tpl_btn_large {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.vxr_tpl_what_we_do {
    padding: 100px 20px;
    background: #f8f9fa;
}

.vxr_tpl_services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.vxr_tpl_service_card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.vxr_tpl_service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vxr_tpl_service_icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.vxr_tpl_service_title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.vxr_tpl_service_description {
    color: #666;
    line-height: 1.6;
}

.vxr_tpl_read_more_wrapper {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .vxr_tpl_section_title {
        font-size: 2rem;
    }

    .vxr_tpl_services_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}