/*
 * Legal Pages Specific Styles
 * One Sphere Solutions
 * Used for legal.php, marketing.php, hr.php
 */

/* Icon styles */
.icon-gold {
    color: #d9a442;
    margin-right: 10px;
}

.icon-small {
    margin-right: 8px;
}

/* Button styles */
.btn-dark-blue {
    background-color: #283848;
    color: white;
    transition: all 0.3s ease;
}

.btn-dark-blue:hover {
    background-color: #1e2a36;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(40, 56, 72, 0.4);
}

.btn-gold {
    background-color: #d9a442;
    color: white;
    box-shadow: 0 4px 10px rgba(217, 164, 66, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-gold:hover {
    background-color: #c89538;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(217, 164, 66, 0.4);
}
.btn-learn-more:hover{
    color: #d9a442;
}
.btn-learn-more{
    color: #d9a442;
}
/* Service card icon styles */
.services-card h3 i {
    color: #d9a442;
    margin-right: 8px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .legal-header-section {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .legal-header-left {
        margin-bottom: 20px;

    }

    .services-header-row {
        flex-direction: column;
        gap: 15px;
    }

    .services-header-row .btn {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .legal-header-left h1 {
        font-size: 28px;
    }

    .services-card h3 {
        font-size: 20px;
    }
}
