﻿
.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* TITLE */
.page-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.page-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 850px;
}

/* SECTION */
.section {
    margin-bottom: 60px;
}

.section h2 {
    font-size: 24px;
    color: #08807D;
    margin-bottom: 10px;
    border-bottom: 2px solid #08807D;
    display: inline-block;
    padding-bottom: 5px;
}

.section p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ROW */
.row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.row img {
    width: 350px;
    border-radius: 8px;
}

/* CONTENT */
.row .content {
    flex: 1;
}

/* LIST */
.training-list {
    padding-left: 20px;
}

.training-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: #f4f9f9;
    border-left: 4px solid #08807D;
    padding: 20px;
    margin-top: 20px;
}

/* BUTTON */
.apply-btn {
    display: inline-block;
    margin-top: 15px;
    color: #08807D;
    font-weight: 600;
    text-decoration: none;
}
.apply-btn:hover {
    text-decoration: underline;
}

/* MOBILE */
@media(max-width:768px) {
    .row {
        flex-direction: column;
    }

    .row img {
        width: 100%;
    }
}

