/*Global Styles*/
body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    color: #333;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

p {
    color: #666;
    line-height: 1.5;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}

li strong {
    font-weight: bold;
}

/*Content Styles*/
.box {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row; 
    align-items: center; 

}

.full-width {
    width: 100%; 
    margin-bottom: 20px;
}

.half-width {
    flex: 1;
    width: calc(50% - 20px); 
    margin-right: 20px;
}
.third-width {
    flex: 1;
    width: calc(33% -20px);
    margin-right: 20px;
}
.full-width-center {
    text-align: center;
    width: 100%; 
    margin-bottom: 20px;
}
.box-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
}

