/* info.css */
.info-section {
    background-color: #fff;
    color: #333;  /* Dark gray text */
    padding: 50px 20px;
    max-width: 70%; /* Set max width to 70% */
    margin: 0 auto; /* Center the section horizontally */
}

/* Existing styling remains unchanged... */
.main-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.sub-title {
    text-align: center;
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Info Boxes Container */
.info-boxes {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.info-box {
    text-align: center;
    width: 30%;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
}

.info-box .circle {
    background-color: #ff66b2;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.info-box p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #333;
}

.check-icon {
    font-size: 2.5rem;  /* Adjust size of check mark */
}

.info-box:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
