/* Basic reset */
/* ------------ Colors paleltte    ------------
#153448 dark blue
#3C5B6F lighter than dark blue
#948979 brown
#DFD0B8 beige */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
    font-family: 'Roboto', sans-serif;
}
h1 h2 h3 h4 h5 h6 {
    font-family: 'Roboto Slab', serif;
    color:#3C5B6F ;
}

.section {
    margin: 20px 0;
    text-align: center;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2em;
    color:#3C5B6F;
    font-family: 'Roboto Slab', serif;
}

p {
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 1em;
}

/* learn-multiple-languages section */
* Learn Languages Section */
.learn-languages {
    padding: 20px 0;
}

.languages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.language-box {
    flex: 1 1 45%;
    margin: 10px;
    max-width: 45%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.language-box h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color:#3C5B6F;
    font-family: 'Roboto Slab', serif;
}

.language-box img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.language-box p {
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
/* Learn Coding by Building Real Projects section */
.value-item {
    display: flex;
    align-items: center;
    justify-content:center;
    margin: 20px 0;
}

.value-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
    padding: 2px;
}

.value-item p {
    max-width: 600px;
    text-align: left;
    margin: 0;
   
}
/* Added this */
@media(max-width: 768px){
    .value-item {
     flex-direction: column;
    }
}
@media(max-width: 768px){
    .value-item img{
     margin-top: 15px;
     margin-bottom: 15px;
    }
}
/* Added Responsive Design */
@media (max-width: 768px) {
    .value-item, .value-item.reverse {
        flex-direction: column;
    }
    .value-item.reverse {
        flex-direction: column-reverse;
    }
}

/* Flex direction for larger screens */
/* @media (min-width: 768px) {
    .value-item {
        text-align: left;
        flex-direction: row;
    }

    .value-item.reverse {
        flex-direction: row-reverse;
    }
} */
