/* Hearing.Games - Main Stylesheet */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Navigation */
.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5aa0;
}

/* Dropdown Navigation */
.nav-menu li {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after,
.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    display: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #2c5aa0;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e0e0e0;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: #f5f5f5;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-left: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle::after {
        content: '▶';
    }

    .dropdown.active .dropdown-toggle::after {
        content: '▼';
        transform: none;
    }
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 200px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons and Links */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #1e3f73;
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Features Text */
.features-text {
    text-align: center;
    margin: 3rem 0;
}

.seasons-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
    text-align: center;
    margin-top: 1rem;
}

.additional-features {
    text-align: center;
    margin: 2rem 0;
}

.feature-text {
    font-size: 1.44rem;
    color: #2c5aa0;
    margin: 0.5rem 0;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c5aa0;
    text-transform: uppercase;
    word-spacing: 1.5rem;
}

@media (max-width: 768px) {
    .features-text h2 {
        font-size: 2rem;
        word-spacing: 1rem;
    }
}

/* Get Started Section */
.get-started-section {
    margin: 4rem 0;
    text-align: center;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.get-started-section h2 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.get-started-visual {
    margin: 2rem 0;
}

.get-started-img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.get-started-cta {
    margin-top: 2rem;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* App Download Buttons */
.app-downloads {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.app-store-btn {
    display: inline-block;
}

.app-store-btn img {
    height: 60px;
    width: auto;
}

/* Cards and Sections */
.card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 3rem;
}

/* Footer */
.main-footer {
    background: #2c5aa0;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-description {
    margin-bottom: 2rem;
}

.footer-description p {
    color: #b8d4f0;
    font-size: 1.1rem;
    max-width: 100%;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b8d4f0;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a6fa5;
    padding-top: 1rem;
    text-align: center;
    color: #b8d4f0;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    .app-downloads {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* About Page Specific Styles */
.founders-section {
    margin: 4rem 0;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.founder-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-photo {
    margin-bottom: 2rem;
}

.founder-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2c5aa0;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.1);
}

.founder-card h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-weight: 600;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.founder-subtitle {
    font-style: italic;
    color: #888;
    margin-bottom: 1.5rem;
}

.founder-bio h4 {
    color: #2c5aa0;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.25rem;
}

.founder-bio ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.founder-bio li {
    margin-bottom: 0.5rem;
}

.founder-bio blockquote {
    background: #e9ecef;
    border-left: 4px solid #2c5aa0;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

.mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 12px;
    margin: 4rem 0;
    text-align: center;
}

.mission-section h2 {
    margin-bottom: 2rem;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.contact-info {
    margin: 4rem 0;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #2c5aa0;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-card {
        padding: 1.5rem;
    }

    .mission-section {
        padding: 2rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 3rem;
    border-radius: 12px;
}

.contact-methods {
    margin: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.contact-method-card.featured {
    max-width: 400px;
    border: 2px solid #2c5aa0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-method-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-action {
    margin: 1.5rem 0;
}

.contact-hours {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.contact-topics {
    margin: 4rem 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.topic-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.topic-card:hover {
    border-color: #2c5aa0;
}

.topic-card h4 {
    color: #2c5aa0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.topic-card p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.topic-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.topic-link:hover {
    text-decoration: underline;
}

.contact-info-detailed {
    margin: 4rem 0;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-items: center;
}

.info-section h4 {
    color: #2c5aa0;
    margin-bottom: 0.75rem;
}

.contact-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-tips {
    margin: 4rem 0;
}

.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-group {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
}

.tip-group h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.tip-group ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.tip-group li {
    margin-bottom: 0.5rem;
}

.tip-group a {
    color: #2c5aa0;
    text-decoration: none;
}

.tip-group a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .tips-content {
        grid-template-columns: 1fr;
    }

    .contact-method-card {
        padding: 1.5rem;
    }

    .contact-hero {
        padding: 2rem 0;
    }
}

/* Home Page Specific Styles */
.hero-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    margin-bottom: 2.5rem;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

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

.btn-large {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
}

.cta-link {
    margin-top: 0.5rem;
}

.cta-link a {
    color: #2c5aa0;
    text-decoration: underline;
}

.hero-image {
    margin: 2rem 0;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(44, 90, 160, 0.15);
}

.features-section {
    margin: 4rem 0;
    text-align: center;
}

.feature-highlight {
    margin-bottom: 3rem;
}

.feature-highlight h2 {
    font-size: 2rem;
    color: #2c5aa0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin: 0;
}

.additional-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.feature-badge {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: #555;
}

.feature-badge.clinically-proven {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
    font-weight: bold;
}

.grades-section {
    margin: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 12px;
}

.grades-content h2 {
    font-size: 2.25rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.learning-info {
    margin-bottom: 2rem;
}

.learning-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.grades-img {
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
}

.detection-section {
    margin: 4rem 0;
    text-align: center;
}

.detection-claim {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-style: italic;
}

.additional-info {
    margin-bottom: 2rem;
}

.additional-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.detection-img {
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.app-download-section {
    margin: 4rem 0;
    text-align: center;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.app-download-section h2 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.app-downloads {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.app-badge {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-store-btn:hover .app-badge {
    transform: scale(1.05);
}

.app-preview {
    margin-top: 3rem;
}

.app-screenshot {
    max-width: 300px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .additional-features {
        flex-direction: column;
        align-items: center;
    }

    .grades-content h2 {
        font-size: 1.75rem;
    }

    .detection-claim {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .app-downloads {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 1rem;
    }
}

/* For Clinicians Page Styles */
.clinicians-hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.clinicians-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 300;
    color: white;
}

.clinicians-overview,
.clinicians-resources,
.clinicians-additional,
.clinicians-next-steps,
.clinicians-contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.overview-content p,
.additional-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.resources-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.resources-list,
.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.resources-list li,
.next-steps-list li {
    background: #f8f9fa;
    margin: 0.5rem 0;
    padding: 1rem;
    border-left: 4px solid #667eea;
    border-radius: 0 8px 8px 0;
}

.resources-list a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.resources-list a:hover {
    text-decoration: underline;
}

.next-steps-list li {
    color: #555;
    font-weight: 500;
}

.clinicians-contact {
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.clinicians-contact h2 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .clinicians-hero h1 {
        font-size: 2rem;
    }

    .clinicians-overview,
    .clinicians-resources,
    .clinicians-additional,
    .clinicians-next-steps,
    .clinicians-contact {
        padding: 1.5rem 1rem;
    }
}

/* Getting Started Page Styles */
.getting-started-hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.getting-started-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 300;
    color: white;
}

.getting-started-overview,
.requirements-section,
.volume-settings-section,
.privacy-section,
.next-steps-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.getting-started-overview .overview-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.requirement-item {
    margin-bottom: 2rem;
}

.requirement-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.requirements-list,
.volume-list,
.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.requirements-list li,
.volume-list li,
.next-steps-list li {
    background: #f8f9fa;
    margin: 0.5rem 0;
    padding: 1rem;
    border-left: 4px solid #667eea;
    border-radius: 0 8px 8px 0;
    color: #555;
    font-weight: 500;
}

.privacy-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.privacy-steps {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin: 1rem 0;
}

.privacy-steps li {
    margin: 0.5rem 0;
    color: #555;
    font-weight: 500;
}

@media (max-width: 768px) {
    .getting-started-hero h1 {
        font-size: 2rem;
    }

    .getting-started-overview,
    .requirements-section,
    .volume-settings-section,
    .privacy-section,
    .next-steps-section {
        padding: 1.5rem 1rem;
    }
}

/* FAQs Page Styles */
.faqs-hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.faqs-hero h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 300;
}

.faqs-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-item {
    margin-bottom: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border-left: 4px solid #667eea;
}

.faq-item h3 {
    background: #667eea;
    color: white;
    margin: 0;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-answer {
    padding: 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.6;
}

.faq-answer h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
}

.faq-answer strong {
    color: #667eea;
}

.faq-answer a {
    color: #667eea;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faqs-contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.faqs-contact h2 {
    color: #333;
    margin-bottom: 1rem;
}

.faqs-contact .contact-info p {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faqs-hero h1 {
        font-size: 2rem;
    }

    .faqs-content,
    .faqs-contact {
        padding: 1.5rem 1rem;
    }

    .faq-item h3 {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 1rem;
    }
}

/* Equipment Page Styles */
.equipment-hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.equipment-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: 300;
}

.equipment-hero .hero-subtitle {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

.equipment-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.equipment-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.equipment-image {
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.equipment-info {
    padding: 1.5rem;
}

.equipment-info h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.equipment-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin: 0 0 1rem 0;
}

.original-price {
    font-size: 1rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
}

.equipment-features h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
}

.equipment-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.equipment-features li {
    background: #f8f9fa;
    margin: 0.5rem 0;
    padding: 0.75rem;
    border-left: 3px solid #667eea;
    border-radius: 0 6px 6px 0;
    color: #555;
}

.equipment-btn {
    width: 100%;
    text-align: center;
    background: #667eea;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.equipment-btn:hover {
    background: #5a67d8;
}

.equipment-contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.equipment-contact h2 {
    color: #333;
    margin-bottom: 1rem;
}

.equipment-contact .contact-info p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #555;
}

@media (max-width: 768px) {
    .equipment-hero h1 {
        font-size: 2rem;
    }

    .equipment-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .equipment-contact {
        padding: 1.5rem 1rem;
    }
}


/* Privacy Policy Page Styles */
.privacy-hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: 300;
    color: white;
}

.privacy-hero .hero-subtitle {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.privacy-section {
    margin-bottom: 3rem;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.privacy-section h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-section li {
    background: white;
    margin: 0.5rem 0;
    padding: 1rem;
    border-left: 3px solid #667eea;
    border-radius: 0 6px 6px 0;
    color: #555;
    line-height: 1.6;
}

.privacy-section strong {
    color: #667eea;
    font-weight: 600;
}

.contact-info,
.contact-details {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.contact-info p,
.contact-details p {
    margin: 0.5rem 0;
    font-weight: 500;
}

.privacy-section a {
    color: #667eea;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .privacy-content {
        padding: 2rem 1rem;
    }

    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .contact-info,
    .contact-details {
        padding: 1rem;
    }
}