/* HEADER SECTION */
.header-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    box-sizing: border-box;
    padding: 4rem 5%;
}

.header-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(41, 128, 185, 0.7), rgba(52, 152, 219, 0.4));
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.2;
    word-break: break-word;
    white-space: normal;
}

/* GENERAL CONTENT SECTION */
.content-section {
    background-color: #f3f4f6;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 2rem;
    text-align: center;
}

.content-wrapper h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #3498db;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-wrapper h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-wrapper p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
    text-align: justify;
}

/* IMAGE-TEXT SECTION */
.image-text-section {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.image-text-section .image-placeholder {
    flex: 1;
    min-width: 280px;
    max-width: 40%;
    height: auto;
    overflow: hidden;
}

.image-text-section .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.image-text-section .text-content {
    flex: 2;
    color: #555;
}

.image-text-section .text-content h3 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.image-text-section .text-content p {
    margin-bottom: 1rem;
}

/* TWO-COLUMN SECTION */
.two-column-section {
    background-color: #f3f4f6;
    padding: 2rem;
}

.two-column-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.column-box {
    background: linear-gradient(to right, #e0f7fa, #b2ebf2);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.column-box h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.column-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.column-box ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: #555;
}

.column-box ul li::before {
    content: '\2022';
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.5em;
    position: absolute;
    left: 0;
}

.column-box p {
    color: #555;
}

/* HORIZONTAL LINE */
.horizontal-line {
    border: none;
    border-top: 1px solid #3498db;
    margin: 2rem 0;
}

/* CONTENT BLOCK BOX */
.content-block-box {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    color: #555;
}

.content-block-box h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.content-block-box ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-block-box ul li {
    margin-bottom: 0.5rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .header-content {
        font-size: 2.8rem;
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .header-section {
        padding: 3rem 2rem;
        min-height: 250px;
    }

    .header-section::before {
        background: linear-gradient(to right, rgba(41, 128, 185, 0.8), rgba(52, 152, 219, 0.3));
    }

    .header-content {
        font-size: 2.4rem;
        text-align: center;
    }

    .image-text-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .image-text-section .image-placeholder {
        max-width: 90%;
        min-width: unset;
    }

    .two-column-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-section {
        padding: 2rem 1rem;
        min-height: 200px;
    }

    .header-section::before {
        background: linear-gradient(to bottom, rgba(41, 128, 185, 0.8), rgba(52, 152, 219, 0.3));
    }

    .header-content {
        font-size: 1.8rem;
    }

    .content-section,
    .two-column-section {
        padding: 2rem 1rem;
    }

    .image-text-section .image-placeholder {
        max-width: 100%;
    }

    .content-wrapper h2 {
        font-size: 2rem;
    }

    .content-wrapper h3 {
        font-size: 1.6rem;
    }

    .content-block-box h3 {
        font-size: 1.5rem;
    }
}
