/* Overall section spacing */
#learnmore.section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* Main content container */
#learnmore .text-container {
    max-width: 900px;
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

/* Headings */
#learnmore h1 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #222;
}

#learnmore h2 {
    margin-top: 40px;
    font-size: 1.6rem;
    color: #333;
    border-left: 4px solid #4a90e2;
    padding-left: 10px;
}

#learnmore h3 {
    margin-top: 25px;
    font-size: 1.2rem;
    color: #444;
}

/* Paragraphs and lists */
/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Main section container */
.section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #fff;
    max-width: 1100px;
    margin: 40px auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* Text container */
.text-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.text-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
}

.text-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Buttons */
.buttons {
    margin-top: 20px;
}

.buttons a {
    display: inline-block;
    padding: 12px 20px;
    margin: 5px;
    background-color: #4da6ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.buttons a:hover {
    background-color: #1a8cff;
}

/* Image container */
.image-container {
    flex: 0 0 300px;
    text-align: center;
}

.image-container img {
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
/* Overall section spacing */
#learnmore.section {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* Main content container */
#learnmore .text-container {
    max-width: 900px;
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
}

/* Headings */
#learnmore h1 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: #222;
}

#learnmore h2 {
    margin-top: 40px;
    font-size: 1.6rem;
    color: #333;
    border-left: 4px solid #4a90e2;
    padding-left: 10px;
}

#learnmore h3 {
    margin-top: 25px;
    font-size: 1.2rem;
    color: #444;
}

/* Paragraphs and lists */
#learnmore p,
#learnmore li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

#learnmore ul {
    margin-left: 20px;
    padding-left: 10px;
}

/* Add spacing between list groups */
#learnmore ul + h3,
#learnmore ul + h2 {
    margin-top: 40px;
}

/* Bubble effect for each major section */
#learnmore h2 + p,
#learnmore h2 + ul,
#learnmore h2 + div {
    background: #f9fafc;
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #e3e7ee;
    margin-top: 10px;
}

/* Bubble effect for h3 subsections */
#learnmore h3 + ul {
    background: #fcfcfc;
    padding: 18px 22px;
    border-radius: 10px;
    border: 1px solid #ececec;
    margin-top: 8px;
}

