/* 
    About Page Specific Styles 
*/

/* Original Content Styles (Restored & Re-styled) */
.about-us-container-original {
    padding: 2rem;
    max-width: 1200px;
    margin: 60px auto;
}

.mission-section-original {
    text-align: left;
    margin-bottom: 4rem;
}

.mission-section-original .aboutTitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.2;
}

.mission-section-original .paragraphs p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.consultant-section {
    position: relative;
    color: #fff;
    padding: 6rem 4rem;
    text-align: left;
    margin-bottom: 4rem;
    background-size: cover;
    background-position: center;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
}

.consultant-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(13, 26, 46, 0.85);
    z-index: -1;
}

.consultant-content {
    max-width: 50%;
}

.consultant-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.consultant-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.consultant-section .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.consultant-section .btn:hover {
    background-color: #fff;
    color: #0d1a2e;
}

.safe-trade-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.safe-trade-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.safe-trade-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.safe-trade-section .btn-light {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.safe-trade-section .btn-light:hover {
    background-color: #333;
    color: #fff;
}


/* New Mission & Vision Section Styles */
.about-page-container .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-vision-section {
    padding: 40px 0 80px 0;
}

.text-block {
    margin-bottom: 50px;
}

.text-block:last-child {
    margin-bottom: 0;
}

.text-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #BFA44E;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 15px;
}

.text-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #BFA44E;
}

.text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}