/* Section Layout */
.learning-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    margin-top: 7rem;
}

/* Text Content */
.content {
    flex: 1;
    max-width: 50%;
    padding: 1rem;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.heart {
    color: #27ae60;
    font-size: 1.2rem;
}

/* Image Container */
.image-container {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .learning-section {
        flex-direction: column;
    }

    .content {
        max-width: 100%;
    }

    .image-container {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.8rem;
    }

    .content p {
        font-size: 0.9rem;
    }
}




/* 2 */
/* General Reset */


/* Section Layout */
.student-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
}

/* Left Graphic Section */
.graphic-container {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.graphic-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Right Text Content */
.text-content {
    flex: 1;
    max-width: 50%;
    padding: 1rem;
}

.text-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
}

.text-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #04AA6D;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #028A57;
}

/* Responsive Design */
@media (max-width: 768px) {
    .student-section {
        flex-direction: column;
        text-align: center;
    }

    .graphic-container,
    .text-content {
        max-width: 100%;
    }

    .graphic-container {
        margin-bottom: 1.5rem;
    }

    .text-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .text-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
    }
}