/* Global Styles */
:root {
    --primary: #007bff;
    --secondary: #6c757d;
    --background-light: #ffffff;
    --background-medium: #f8f9fa;
    --background-dark: #e9ecef;
    --text-dark: #212529;
    --text-light: #ffffff;
    --navbar-height: 80px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-light);
    padding-top: 80px;
}

/* Main Content Wrapper */
.main-content {
    min-height: calc(100vh - 160px);
    padding: 2rem 0;
}

/* Container and Section Styles */
.container, .container-fluid {
    background: var(--background-light);
}

.section {
    padding: 3rem 0;
}

.container.my-5 {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Banner Styles */
.banner {
    background: var(--background-medium);
    padding: 1.5rem 0;
    margin: 0;
    text-align: center;
}

.banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    background: var(--background-light);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-light {
    background: var(--background-light);
    color: var(--text-dark);
    border: 1px solid var(--background-dark);
}

.btn-light:hover {
    background: var(--background-dark);
    color: var(--text-dark);
}

.btn-outline-light {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline-light:hover {
    background: var(--text-dark);
    color: var(--background-light);
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 2rem;
    background: var(--background-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-body {
    padding: 2rem;
}

.card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Form Styles */
.form-control {
    background: var(--background-light);
    border: 1px solid var(--background-dark);
    color: var(--text-dark);
}

.form-control:focus {
    background: var(--background-light);
    border-color: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 0 0 0.2rem rgba(5, 60, 97, 0.15);
}

/* Footer */
#copyright {
    background: var(--background-medium);
    padding: 1.5rem 0;
    color: var(--text-dark);
}

/* Typography */
h1 {
    font-size: 5.6rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem 0;
    margin: 0;
    color: var(--text-dark);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Images */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.SoftwareLogos {
    max-width: 100%;
    max-height: 75%;
    margin: 1rem auto;
}

.SoftwareLogos:hover {
    transform: scale(1.05);
}

/* FAQ Styles */
#faq .card {
    margin-bottom: 2.5rem;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    background: white;
}

#faq .card-header {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem;
}

#faq .card-body {
    padding: 2rem;
    color: var(--text-dark) !important;
}

#faq .btn-link {
    color: var(--text-dark) !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

#faq .btn-link:hover {
    color: var(--primary) !important;
    text-decoration: none;
}

#faq .btn-link:focus {
    box-shadow: none;
}

#faq .btn-link::after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

#faq .btn-link[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

#faq .collapse {
    transition: all 0.3s ease;
}

#faq .collapse.show {
    background: rgba(0,0,0,0.02);
    border-radius: 0 0 8px 8px;
}

#faq .accordion {
    padding: 3rem 0;
}

#faq .section-title {
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .main-content {
        padding: 1rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Lists */
.list-unstyled li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.list-unstyled li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Images */
.headset-image {
    max-width: 80%;
    margin: 2rem auto;
}

/* Container */
.container {
    max-width: 1200px;
    padding: 0 1.5rem;
}

/* Text */
.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

/* Spacing */
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }