/* Theme Colors and Variables */
:root {
    --primary-color: #032e42;
    --secondary-color: #d83030;
    --accent-color: #fda128;
    --text-color: #676767;
    --bg-light: #f8f9fa;
    --bg-dark: #252628;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.section-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 50px;
}

.section-subtitle-small {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.page-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    line-height: 1.5;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--bg-dark);
    color: white;
}

.btn-secondary {
    background: var(--bg-dark);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--secondary-color);
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

/* Header Styles */
.top-bar {
    background: var(--secondary-color);
    padding: 8px 0;
    font-size: 14px;
    color: white;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: white;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.top-bar-right a:hover {
    opacity: 0.8;
}

.main-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    background: white;
}

.nav-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    background: var(--secondary-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-sidebar-logo {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s ease;
}

.mobile-nav-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-nav-menu i {
    color: #ccc;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #032e42 0%, #0a4d6e 100%);
    padding: 150px 0 80px;
    color: white;
    margin-top: 80px;
}

.page-header.small {
    padding: 60px 0 40px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #032e42 0%, #0a4d6e 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-divider {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 20px 0;
}

/* Cards */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    /* Removed transform and box-shadow */
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.report-card:hover {
    /* Removed transform and box-shadow */
}

.report-image {
    height: 200px;
    overflow: hidden;
}

.report-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-card:hover .report-image img {
    /* Removed transform */
}

.report-content {
    padding: 30px;
}

.report-category {
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.report-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.report-date {
    color: var(--text-color);
    font-size: 14px;
}

.report-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    overflow: hidden;
}

.team-card:hover {
    /* Removed transform */
}

.team-image {
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 16px;
}

.author-info span {
    color: var(--text-color);
    font-size: 14px;
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    font-weight: 600;
}

/* Forms */
.form-control {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label:hover {
    color: var(--secondary-color);
}

/* Reports Page Specific */
.sidebar-filters {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.filter-header {
    background: var(--bg-light);
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.filter-categories {
    padding: 0;
    max-height: 500px;
    overflow-y: auto;
}

.filter-categories::-webkit-scrollbar {
    width: 5px;
}

.filter-categories::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.filter-categories::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0.05);
}

.category-item {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.category-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.category-item.active {
    background: var(--secondary-color);
    color: white;
}

.search-box {
    position: relative;
    max-width: 600px;
}

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
}

.search-box input:focus {
    border-color: var(--secondary-color);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.report-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    height: 220px;
    position: relative;
    cursor: pointer;
}

.report-item:hover {
    border-color: #17a2b8;
}

.report-cover-modern {
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* Report Detail Page */
.purchase-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.price-section {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.price-note {
    color: var(--text-color);
    font-size: 14px;
}

.included-features {
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

.related-reports {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.related-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
}

.related-item:hover {
    background: white;
    padding: 10px;
    border-radius: 5px;
}

.related-content h6 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.3;
}

.related-price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
}

.sample-page {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.sample-page:hover {
    /* Removed transform */
}

.toc-list {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.toc-item {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chapter-number {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 700;
}

.chapter-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.report-specs {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.spec-item {
    text-align: center;
}

.spec-icon {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.spec-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.spec-label {
    color: var(--text-color);
    font-size: 14px;
}

.finding-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0 10px 10px 0;
}

.finding-icon {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.finding-icon i {
    color: white;
    font-size: 14px;
}

.finding-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
    font-weight: 500;
}

/* Contact Page */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 10px;
}

.contact-card {
    background: var(--primary-color);
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 18px;
}

.contact-details h5 {
    margin-bottom: 8px;
    color: white;
}

.contact-details p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.quick-contact {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.quick-actions .btn {
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.map-container {
    height: 400px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #032e42, #0a4d6e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    position: relative;
}

.faq-question h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-question i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    /* Removed transform */
}

/* About Page */
.mvv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mvv-icon i {
    color: white;
    font-size: 30px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.feature-card:hover {
    /* Removed transform */
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 24px;
}

.feature-content h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Services Page */
.services-overview {
    padding: 100px 0;
}

.service-section {
    margin-bottom: 80px;
}

.service-icon-lg {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon-lg img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.service-features {
    margin-bottom: 30px;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.service-features .feature i {
    color: var(--secondary-color);
}

.additional-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
}

.additional-service-card .service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.additional-service-card .service-icon i {
    color: var(--secondary-color);
    font-size: 24px;
}

.additional-service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px 0;
}

.additional-service-card li {
    margin-bottom: 8px;
}

.additional-service-card li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: white;
}

/* Footer */
.footer {
    background: #252628;
    color: #bbbbbb;
    padding: 80px 0 40px;
}

.footer h3,
.footer h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #bbbbbb;
    font-size: 18px;
}

.social-links a:hover {
    color: #ffffff;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #bbbbbb;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #ffffff;
}

.contact-info div {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--secondary-color);
}

.copyright p {
    margin: 0;
    color: #aaaaaa;
}

.footer-links {
    text-align: right;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    margin-left: 20px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    font-size: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--bg-dark);
}

/* Responsive Design */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .top-bar-left {
        gap: 20px;
    }
    
    .top-bar-left span {
        font-size: 13px;
    }
    
    .top-bar-right {
        gap: 10px;
    }
    
    .sidebar-filters {
        margin-bottom: 30px;
    }
    
    .filter-categories {
        max-height: 400px;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .nav-actions {
        gap: 5px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .purchase-card {
        position: static;
        margin-bottom: 40px;
    }
    
    .report-specs .row {
        text-align: center;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 20px;
    }
    
    .footer-links {
        text-align: left;
        margin-top: 20px;
    }
    
    .footer-links a {
        margin-left: 0;
        margin-right: 20px;
    }
    
    .report-content {
        padding: 20px;
    }
    
    .report-content h3 {
        font-size: 18px;
    }
    
    .report-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .report-actions .btn {
        text-align: center;
        width: 100%;
    }
    
    .category-header {
        padding: 20px;
    }
    
    .category-header h2 {
        font-size: 24px;
    }
}

/* Additional utility classes */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: 0.375rem; }
    .top-bar-left {
        gap: 20px;
    }
    
    .top-bar-left span {
        font-size: 13px;
    }
    
    .top-bar-right {
        gap: 10px;
    }
    
    .sidebar-filters {
        margin-bottom: 30px;
    }
    
    .filter-categories {
        max-height: 400px;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .nav-actions {
        gap: 5px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .purchase-card {
        position: static;
        margin-bottom: 40px;
    }
    
    .report-specs .row {
        text-align: center;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 20px;
    }
    
    .footer-links {
        text-align: left;
        margin-top: 20px;
    }
    
    .footer-links a {
        margin-left: 0;
        margin-right: 20px;
    }
    
    .report-content {
        padding: 20px;
    }
    
    .report-content h3 {
        font-size: 18px;
    }
    
    .report-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .report-actions .btn {
        text-align: center;
        width: 100%;
    }
    
    .category-header {
        padding: 20px;
    }
    
    .category-header h2 {
        font-size: 24px;
    }
}

/* Additional utility classes */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
.gap-20 { gap: 20px; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: 0.375rem; }
