/* Generic styles for all sections */
section {
    padding: 30px 0;
    background-color: #F5F5F5;
    color: #333333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #620030;
    font-weight: bold;
}

.section-content {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    width: 70%;
} 

.container-no-bg {
    max-width: 1200px;
    margin: 0 auto;
}

.section-content-no-bg {
    border-radius: 15px;
    margin-top: 30px;
    width: 70%;
} 

.section-text, .section-list {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
    width: 100%;
}

.section-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #78003D;
    color: #FFFFFF;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.section-button:hover {
    background-color: #5A002B;
}


/*The summary columns*/
.summary-section {
    text-align: center;
    background-color: rgba(218, 218, 218, 1);
    padding-left:5em;
    padding-right: 5em;
}

.bg-box {
    padding: 2em;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}

.section-sumarry-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2em;
}

.column {
    flex: 1;
    text-align: justify;
}

.first-sentence {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 1em;
}


.org-name {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.flag-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.flag-link {
    display: block;
    width: 50px; 
    height: auto;
}

.flag-icon {
    width: 100%;
    height: auto;
}


.organization-info {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.org-name {
    margin: 0;
}

.org-logo {
    max-width: 50px;
    height: auto;
}

.flag-link img {
    max-width: 50px;
    height: auto;
}



