﻿/* Hero Banner Section */
.hero-banner {
    /*background-image: url('../img/blank/blank-hero.png');*/ 
    background-image: url('../img/blank/blank-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    position: relative;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 8px;
    font-size: 14px;
}

.hero-banner h1 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background-color: #fff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

/* Main Content */
.main-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.content-section ul li {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.content-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: bold;
    font-size: 20px;
}

.highlight-box {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.highlight-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.highlight-box p {
    margin-bottom: 10px;
}

.btn-dark {
    margin-top: 20px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.sidebar-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.sidebar-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services li {
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.sidebar-services li.active {
    background-color: #f0f0f0;
}

.sidebar-services li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

.sidebar-services li.active a {
    color: #1e3a8a;
    font-weight: 500;
}

.sidebar-services li:hover:not(.active) {
    background-color: #f8f8f8;
}

.account-box {
    background-image: url('../img/blank/blank-account.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    border: none;
    position: relative;
    text-align: center;
}

.account-box h3 {
    color: white;
}

.account-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.account-box .btn-primary {
    background-color: #ff6600;
    width: 100%;
    text-align: center;
}

.account-icon {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-icon img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    background-color: #1e3a8a;
    color: white;
    padding: 60px 0;
    margin-top: 60px;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.contact-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-button {
    background-color: white;
    border-radius: 8px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 250px;
    justify-content: center;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-button i {
    font-size: 20px;
    color: #ff6600;
}

.contact-button span {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .main-content h1 {
        font-size: 28px;
    }

    .content-section h2 {
        font-size: 20px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .contact-button {
        min-width: 100%;
    }
}
