/* About Section */

.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about .left img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about .right h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.about .right h1 {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.about .right p {
    font-size: 14px;
    color: var(--dark-grey);
    margin-bottom: 30px;
    line-height: 1.6;
}

.about .right .strengths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns for widgets */
    gap: 20px;
}

.about .right .strengths .strength {
    background-color: var(--light-grey);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.about .right .strengths .strength:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.about .right .strengths .strength i {
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 10px;
}

.about .right .strengths .strength h3 {
    font-size: 20px;
    color: var(--teal);
    margin: 0 0 10px;
}

.about .right .strengths .strength p {
    font-size: 16px;
    color: var(--white);
    margin: 0;
}


/* Add this CSS to your stylesheet */

.download-button-container {
    margin-top: 20px;
    /* Adjust as needed for spacing */
}

.download-button {
    display: inline-block;
    background-color: var(--light-grey);
    /* Example primary color */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    align-items: center;
    /* Vertically align icon and text */
}

.download-button i {
    margin-right: 8px;
}

.download-button:hover {
    background-color: var(--orange);
    /* Darker shade on hover */
}


/* Media Queries for Mobile Responsiveness */

@media (max-width: 768px) {
    .about {
        padding: 50px 0;
    }
    .about .content {
        grid-template-columns: 1fr;
        /* Stack columns vertically on smaller screens */
        gap: 20px;
    }
    .about .right h1 {
        font-size: 28px;
    }
    .about .right h4 {
        font-size: 14px;
    }
    .about .right p {
        font-size: 13px;
    }
    .about .right .strengths {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for smaller screens */
    }
}

@media (max-width: 480px) {
    .about .right h1 {
        font-size: 24px;
    }
    .about .right h4 {
        font-size: 13px;
    }
    .about .right p {
        font-size: 12px;
    }
    .about .right .strengths {
        grid-template-columns: 1fr;
        /* 1 column for very small screens */
    }
    .about .right .strengths .strength {
        padding: 15px;
    }
    .about .right .strengths .strength i {
        font-size: 28px;
    }
    .about .right .strengths .strength h3 {
        font-size: 18px;
    }
    .about .right .strengths .strength p {
        font-size: 14px;
    }
}