:root {
    /* Primary Colors - Signal Corps Orange */
    --color-primary: #FF6600;           /* Signal Corps Orange */
    --color-primary-dark: #CC5200;      /* Darker orange for hover */
    --color-primary-light: #FF8533;     /* Lighter orange */
    
    /* Secondary Colors - Military Gray-Blue */
    --color-secondary: #2C3E50;         /* Military Gray-Blue */
    --color-secondary-dark: #1A252F;    /* Darker for depth */
    --color-secondary-light: #34495E;   /* Lighter variation */
    
    /* Accent Colors - Norfolk State */
    --color-accent-green: #00543C;      /* Norfolk State Green */
    --color-accent-gold: #FFC72C;       /* Norfolk State Gold */
    
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-background: #F5F5F5;        /* Light gray background */
    --color-background-dark: #E8E8E8;   /* Slightly darker gray */
    --color-card: #FFFFFF;
    
    /* Text Colors */
    --color-text: #1A1A1A;              /* Near black */
    --color-text-light: #5A6C7D;        /* Lighter text */
    --color-text-muted: #7A8A9D;        /* Muted text */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6600 0%, #CC5200 100%);
    --gradient-secondary: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
    --gradient-hero: linear-gradient(135deg, #2C3E50 0%, #34495E 50%, #FF6600 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-orange: 0 8px 25px rgba(255, 102, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-background);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--color-primary);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

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

nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--color-primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Download link styling */
.download-link {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.download-link:hover {
    background: var(--color-primary-dark);
}

.download-link::after {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: var(--gradient-hero);
    color: white;
    padding: 8rem 2rem 6rem;
    margin-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 102, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 84, 60, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-image {
    max-width: 800px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hero-image-placeholder {
    background: rgba(255, 255, 255, 0.2);
    height: 328px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
	overflow: hidden;
}

.hero-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
	position: relative;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 5rem 2rem;
    background: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-secondary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--color-background);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: var(--shadow-orange);
}

/* Alternate feature icons with green accent */
.feature-item:nth-child(even) .feature-icon {
    background: linear-gradient(135deg, var(--color-accent-green) 0%, #007050 100%);
    box-shadow: 0 8px 25px rgba(0, 84, 60, 0.3);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.feature-item p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-orange);
}

.btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.4);
}

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

.btn-secondary {
    background: var(--color-secondary);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.btn-secondary:hover {
    background: var(--color-secondary-light);
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.4);
}

.btn-text {
    background: transparent;
    color: var(--color-primary);
    box-shadow: none;
    border: 2px solid var(--color-primary);
}

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

.store-badge {
    height: 50px;
    width: auto;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.download {
    padding: 5rem 2rem;
    background: var(--color-background);
}

.download-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.download-option {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.download-option:hover {
    border-color: var(--color-primary);
}

.download-option h3 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.download-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.requirements {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    border-left: 4px solid var(--color-accent-green);
}

.requirements h4 {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

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

.requirements li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
}

.requirements li::before {
    content: '✓ ';
    color: var(--color-accent-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ============================================
   PRIVACY/TRUST SECTION
   ============================================ */

.privacy-trust {
    padding: 5rem 2rem;
    background: var(--color-white);
}

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

.privacy-item {
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: 10px;
    border-left: 4px solid var(--color-primary);
}

.privacy-item h3 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.privacy-item p {
    color: var(--color-text-light);
}

.privacy-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   PRICING SECTION (if needed)
   ============================================ */

.pricing {
    padding: 5rem 2rem;
    background: white;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

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

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-background-dark);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.pricing-card.featured h3 {
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: var(--color-primary);
}

.pricing-card.featured .price {
    color: white;
}

.price-period {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-background);
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .btn {
    background: white;
    color: var(--color-primary);
}

.pricing-card.featured .btn:hover {
    background: var(--color-background);
}

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */

.screenshots {
    padding: 5rem 2rem;
    background: var(--color-background);
}

.screenshots-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

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

.screenshot-item {
    background: white;
/**    border-radius: 10px;**/
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-placeholder {
    background: var(--color-background);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 1.2rem;
}

.screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    padding: 1rem;
    text-align: center;
    color: var(--color-text-light);
    background: var(--color-white);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 5rem 2rem;
    background: var(--color-white);
}

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

.faq-item {
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: 10px;
    border-left: 4px solid var(--color-accent-green);
}

.faq-item h3 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--color-text-light);
}

.faq-item a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: 5rem 2rem;
    background: var(--color-background);
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: var(--color-secondary);
}

/* ============================================
   HOSTING/PERSONAL TRAINER SECTION
   ============================================ */

.hosting {
    background: var(--gradient-secondary);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hosting h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hosting p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hosting-disclaimer {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.8;
    font-size: 1rem;
}

.personal-trainer-banner {
    width: 100%;
    height: 150px;
    background: linear-gradient(45deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.personal-trainer-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.personal-trainer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 102, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 84, 60, 0.2) 0%, transparent 50%);
}

.personal-trainer-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 25px;
    color: white;
}

.left-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-container {
    width: 125px;
    height: 125px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
}

.personal-trainer-icon {
    font-size: 28px;
    width: 100px;
}

.text-content {
    flex: 1;
}

.title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent-gold), var(--color-primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.subtitle {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.4;
    color: #b0b0b0;
    font-weight: 300;
}

.personal-trainer-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 1px;
    font-size: 10px;
}

.personal-trainer-features div {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.cta {
    background: var(--gradient-primary);
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 90px;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta:hover::before {
    left: 100%;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.6);
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: var(--shadow-orange); }
    to { box-shadow: 0 8px 25px rgba(255, 102, 0, 0.8); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.floating {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter {
    background: var(--gradient-secondary);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--color-primary-dark);
}

.newsletter-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--color-secondary);
    color: white;
    padding: 3rem 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--color-accent-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    opacity: 0.8;
}

footer a {
    color: var(--color-accent-gold);
    text-decoration: none;
}

footer a:hover {
    color: var(--color-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .download-options {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Personal trainer section mobile */
    .personal-trainer-banner {
        height: auto;
        min-height: 200px;
    }

    .personal-trainer-content {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .left-section {
        flex-direction: column;
        text-align: center;
    }

    .title {
        font-size: 18px;
    }

    .subtitle {
        font-size: 10px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

a {
    text-decoration: none;
}

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

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Color utility classes */
.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.bg-primary {
    background: var(--color-primary);
}

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

/* ============================================
   END OF MILITARY PROFESSIONAL THEME
   Signal Corps Orange (#FF6600)
   Military Gray-Blue (#2C3E50)
   Norfolk State Green (#00543C)
   Norfolk State Gold (#FFC72C)
   ============================================ */

/* ============================================
   PRIVACY POLICY PAGE STYLES
   Add these to your existing styles.css file
   ============================================ */

/* Privacy Section */
.privacy-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.privacy-section h1 {
    color: #2C3E50;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #5A6C7D;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-content h2 {
    color: #2C3E50;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF6600;
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content h3 {
    color: #00543C;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.privacy-content p {
    color: #1A1A1A;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-content ul,
.privacy-content ol {
    color: #1A1A1A;
    line-height: 1.8;
    margin-bottom: 20px;
    margin-left: 20px;
}

.privacy-content ul li,
.privacy-content ol li {
    margin-bottom: 10px;
}

.privacy-content a {
    color: #FF6600;
    text-decoration: none;
    font-weight: 500;
}

.privacy-content a:hover {
    color: #CC5200;
    text-decoration: underline;
}

.privacy-summary {
    background: #f5f5f5;
    border-left: 4px solid #FF6600;
    padding: 20px 25px;
    margin-top: 30px;
    border-radius: 8px;
}

.privacy-summary h3 {
    color: #2C3E50;
    margin-top: 0;
    margin-bottom: 15px;
}

.privacy-summary ul {
    margin-left: 0;
    list-style: none;
}

.privacy-summary li {
    padding-left: 0;
    color: #00543C;
    font-weight: 500;
}

.privacy-summary li::before {
    content: "";
    margin-right: 0;
}

/* Active navigation link */
nav a.active {
    color: #FF6600;
    border-bottom: 2px solid #FF6600;
}

/* Responsive Design for Privacy Page */
@media (max-width: 768px) {
    .privacy-section {
        padding: 60px 15px;
    }

    .privacy-section h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 25px;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-section h1 {
        font-size: 1.75rem;
    }

    .privacy-content {
        padding: 20px;
    }

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

    .privacy-content h3 {
        font-size: 1.1rem;
    }
}


.youtube-video-hero {
	height: 100%;
	width: 100%;
}

.download-hash {
	word-wrap: anywhere;
}

.skip-link {                                                                                                                                                                            
      position: absolute;                                                                                                                                                
      top: -40px;                                                                                                                                                               
      left: 0;                                                                                                                                                                    
      background: #000;                                                                                                                                                           
      color: #fff;                                                                                                                                                               
      padding: 8px 16px;                                                                                                                                                          
      text-decoration: none;                                                                                                                                                       
      z-index: 100;                                                                                                                                                               
      border-radius: 0 0 4px 0;                                                                                                                                                        
}

.skip-link:focus {                                                                                                                                                                      
      top: 0;
}   

.hero-window {
	height: 100%;
}