:root {
  --red: #D90429;
  --red-dark: #AD0321;
  --red-light: #EF233C;
  --blue: #2B2D42;
  --bg-color: #F8F9FA;
  --white: #FFFFFF;
  --text-dark: #121212;
  --text-light: #5A5A5A;
  --border: #E0E0E0;
  
  --font-main: 'Montserrat', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
  
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  
  --transition: all 0.2s ease-in-out;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; }
body { font-family: var(--font-main); background-color: var(--white); color: var(--text-dark); line-height: 1.6; font-size: 16px; }
a { text-decoration: none; color: var(--red); transition: var(--transition); }
a:hover { color: var(--red-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background-color: var(--red); color: var(--white); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; border: 2px solid var(--red); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.btn-primary:hover { background-color: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background-color: transparent; color: var(--red); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; border: 2px solid var(--red); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.btn-outline:hover { background-color: var(--red); color: var(--white); }

/* Header */
.top-bar { background-color: var(--red); color: var(--white); padding: 10px 0; font-size: 15px; font-weight: 600; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--white); display: flex; align-items: center; gap: 6px; }
.top-bar a:hover { text-decoration: underline; }
.top-bar-left { display: flex; gap: 20px; }

.site-header { background-color: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; padding: 15px 0; border-bottom: 2px solid var(--blue); }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 2rem; font-weight: 900; color: var(--blue); display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: -1px; }
.logo span { color: var(--red); }

/* Desktop Nav */
.main-nav ul { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; align-items: center; }
.main-nav a { color: var(--blue); font-weight: 700; font-size: 1rem; text-transform: uppercase; padding: 10px 0; }
.main-nav a:hover { color: var(--red); }

/* Mobile Menu Toggle */
.mobile-menu-btn { display: none; background: none; border: none; font-size: 2rem; color: var(--blue); cursor: pointer; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background-color: var(--white); min-width: 250px; box-shadow: var(--shadow-md); border-top: 3px solid var(--red); top: 100%; left: 0; z-index: 101; }
@media (min-width: 993px) {
  .dropdown:hover .dropdown-content { display: block; }
}
.dropdown-content a { display: block; padding: 15px 20px; font-weight: 600; border-bottom: 1px solid var(--border); text-transform: none; }
.dropdown-content a:hover { background-color: var(--bg-color); color: var(--red); padding-left: 25px; }

/* Responsive Header */
@media (max-width: 992px) {
  .top-bar-left span:last-child { display: none; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); box-shadow: var(--shadow-md); padding: 20px; flex-direction: column; border-top: 1px solid var(--border); }
  .main-nav.active { display: flex; }
  .main-nav ul { flex-direction: column; width: 100%; gap: 15px; align-items: flex-start; }
  .main-nav .btn-primary { width: 100%; justify-content: center; margin-top: 10px; }
  .mobile-menu-btn { display: block; }
  .dropdown-content { position: static; box-shadow: none; border: none; padding-left: 20px; display: none; border-left: 2px solid var(--red); margin-top: 10px; }
  .dropdown.active .dropdown-content { display: block; }
  .header-cta { display: none; }
}

/* Breadcrumbs */
.breadcrumb-bar { background-color: var(--bg-color); border-bottom: 1px solid var(--border); padding: 15px 0; font-size: 14px; font-weight: 600; }
.bc-inner { display: flex; align-items: center; gap: 10px; color: var(--text-light); }
.bc-sep { color: var(--border); }

/* Banners */
.page-inner-banner { background: var(--blue); color: var(--white); padding: 80px 0; position: relative; }
.page-inner-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 10px; background: var(--red); }
.page-inner-banner h1 { font-size: 3.5rem; margin-bottom: 15px; font-weight: 900; text-transform: uppercase; }
.page-inner-banner p { font-size: 1.2rem; color: #E0E0E0; max-width: 800px; }

/* Hero Section */
.hero-container { display: flex; flex-wrap: wrap; align-items: stretch; }
.hero-content { flex: 1; min-width: 300px; padding: 60px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-image { flex: 1; min-width: 300px; position: relative; min-height: 400px; }

/* Sections */
.section-white { background: var(--white); padding: 80px 0; }
.section-bg { background: var(--bg-color); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.main-content h2 { font-size: 2.2rem; color: var(--blue); margin: 40px 0 20px; font-weight: 800; text-transform: uppercase; }
.main-content h2:first-child { margin-top: 0; }
.main-content h3 { font-size: 1.5rem; color: var(--blue); margin: 30px 0 15px; font-weight: 700; }
.main-content p { margin-bottom: 20px; font-size: 1.1rem; }
.main-content ul { margin-bottom: 20px; padding-left: 0; list-style: none; }
.main-content li { margin-bottom: 10px; font-size: 1.1rem; display: flex; gap: 10px; align-items:flex-start; }

/* Sidebar */
.sidebar { position: sticky; top: 120px; }
.sidebar-box { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-sm); padding: 30px; box-shadow: var(--shadow-sm); margin-bottom: 30px; }
.sidebar-box h3 { font-size: 1.3rem; color: var(--blue); margin-bottom: 20px; border-bottom: 3px solid var(--red); padding-bottom: 10px; font-weight: 800; text-transform: uppercase; }
.sidebar-nav ul { list-style: none; padding: 0; }
.sidebar-nav a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text-dark); font-weight: 600; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--red); padding-left: 5px; }

/* FAQ Accordion */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.acc-item { margin-bottom: 10px; background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-sm); }
.acc-question { width: 100%; padding: 20px; text-align: left; background: none; border: none; font-size: 1.2rem; font-weight: 700; color: var(--blue); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-main); }
.acc-question:hover { color: var(--red); }
.acc-answer { padding: 0 20px; display: none; border-top: 1px solid var(--border); }
.acc-answer p { margin: 20px 0; }
.acc-item.active { border-color: var(--blue); }
.acc-item.active .acc-answer { display: block; }

/* CTA Block */
.rs-cta { background: var(--blue); padding: 80px 0; text-align: center; color: var(--white); border-top: 10px solid var(--red); }
.rs-cta h2 { font-size: 3rem; margin-bottom: 20px; color: var(--white); font-weight: 900; text-transform: uppercase; }
.rs-cta p { font-size: 1.2rem; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background-color: #1A1C29; color: var(--white); padding: 80px 0 0; border-top: 5px solid var(--red); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-col h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 25px; font-weight: 800; text-transform: uppercase; }
.footer-col h3::after { content: ''; display: block; width: 40px; height: 3px; background: var(--red); margin-top: 10px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 15px; }
.footer-col a { color: #B0B0B0; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { background-color: #0F101A; padding: 20px 0; text-align: center; color: #808080; font-size: 14px; }

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
  /* Top Bar */
  .top-bar { font-size: 12px; padding: 12px 0; }
  .top-bar-inner { flex-direction: column; gap: 10px; align-items: center; text-align: center; }
  .top-bar-left { flex-direction: column; gap: 5px; align-items: center; }
  
  /* Header & Logo */
  .logo { font-size: 1.3rem; }
  
  /* Typography */
  h1, .page-inner-banner h1 { font-size: 2.2rem !important; }
  h2, .main-content h2, .rs-cta h2, section h2 { font-size: 1.8rem !important; line-height: 1.2; }
  h3, .main-content h3 { font-size: 1.4rem !important; }
  
  /* Layouts */
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-white, .section-bg, .rs-cta, .page-inner-banner { padding: 40px 0; }
  .sidebar { position: static; margin-top: 20px; }
  
  /* Buttons */
  .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 14px 20px; }
  
  /* Hero Section Mobile */
  .hero-container { display: block !important; }
  .hero-content { padding: 30px 0 !important; width: 100% !important; }
  .hero-image { min-height: 250px !important; width: 100% !important; }
}
