
/* Info Section */
.info {
    padding: 80px 0;
    background-color: white;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-box {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-box ul {
    list-style-type: none;
}

.info-box li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-box i {
    margin-right: 10px;
    color: var(--primary);
}
