/* ===========================
    PeakVest Main Styles
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f6fb;
    color:#222;
    line-height:1.6;
}

html{
    scroll-behavior:smooth;
}

/* Navbar */

.navbar{
    background:#07162d !important;
}

.navbar-brand{
    font-size:30px;
    font-weight:bold;
}

.nav-link{
    color:#ffffff !important;
    margin-left:15px;
}

.nav-link:hover{
    color:#ffc107 !important;
}

/* Sidebar Scroll Fix */
.sidebar {
    width: 260px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    background: #1f2328;
    overflow-y: scroll !important; /* Forces scroll container activation */
    -webkit-overflow-scrolling: touch !important; /* Enables momentum scrolling on iOS */
    touch-action: pan-y;
}

/* Hero */

.hero{
    background:linear-gradient(135deg,#08192d,#0d4f85);
    color:white;
    min-height:700px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero h1{
    font-size:58px;
    font-weight:800;
    line-height:1.1;
}

.hero p{
    font-size:20px;
    color:#d5d5d5;
}

.hero img{
    width:100%;
    max-width:550px;
}

/* Buttons */

.btn-warning{
    padding:12px 28px;
    font-weight:bold;
}

.btn-outline-light{
    padding:12px 28px;
}

/* Statistics */

.bg-light{
    background:#ffffff !important;
}

.bg-light h2{
    color:#0d4f85;
    font-weight:bold;
    font-size:42px;
}

.bg-light p{
    color:#666;
}

/* Cards */

.card{
    border-radius:20px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:55px;
}

/* Footer */

footer{
    background:#07162d !important;
}

/* Responsive */

@media(max-width:991px){
.hero{
text-align:center;
padding:80px 0;
}

.hero h1{
font-size:42px;
}

.hero img{
margin-top:50px;
}

}

@media(max-width:768px){
.hero h1{
font-size:34px;
}

.hero p{
font-size:17px;
}

.navbar-brand{
font-size:24px;
}

}
.list-group-item{
    border:none;
    padding:15px 0;
}

.card{
    border-radius:15px;
}

.card h2{
    font-weight:bold;
}

.card:hover{
    transform:translateY(-5px);
}
/* FAQ */

.accordion-button{
font-weight:bold;
}

.accordion-button:not(.collapsed){
background:#0d6efd;
color:white;
}

.accordion-item{
border-radius:10px;
overflow:hidden;
margin-bottom:15px;
}
/* Contact Page */

form .form-control{
padding:12px;
border-radius:10px;
}

form textarea{
resize:none;
}

.card{
margin-bottom:20px;
}

.btn-primary{
padding:12px 25px;
font-weight:bold;
}

/* ===========================
    PeakVest Legal & Auth Extras
=========================== */

.auth-legal-group {
    margin: 15px 0 20px 0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-legal-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0d4f85;
}

.auth-legal-group a {
    color: #0d4f85;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-legal-group a:hover {
    color: #ffc107;
    text-decoration: underline;
}

/* ===========================
    Sidebar Offset Fix (Added)
=========================== */
@media (min-width: 992px) {
    .main-content {
        margin-left: 260px;
        width: calc(100% - 260px);
    }
}