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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #C40C0C;
}

/* ===== EXPLICIT H1 TYPOGRAPHY FIXES ===== */
/* Fix for Lighthouse "Uses deprecated APIs" warning */
/* Ensure all h1 elements have explicit font-size and line-height */

/* H1 elements inside sections */
section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
}

/* H1 elements inside articles */
article h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
}

/* H1 elements inside aside */
aside h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
}

/* H1 elements inside nav */
nav h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
}

/* Specific h1 overrides for different contexts */
.hero h1,
.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.about-hero h1,
.privacy-hero h1,
.terms-hero h1,
.disclaimer-hero h1,
.faq-hero h1,
.contact-hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 800;
}

.nav-logo h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
}

/* Ensure all h1 elements have consistent base properties */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

/* Accessibility Improvements */
:focus {
    outline: 3px solid #FFC100;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #FF6500;
    color: #FFFFFF;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #C40C0C 0%, #FF6500 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 0;
}

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

/* Logo Section */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 45px;
    height: 45px;
    margin-right: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: rotate(5deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #FFFFFF, #FFC100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    background: rgba(255, 193, 0, 0.3);
    color: #FFC100;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 193, 0, 0.3);
}

/* Login/Register Buttons */
.btn-login,
.btn-register {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn-login {
    background: linear-gradient(135deg, #FF8A08, #FFC100);
    color: #FFFFFF;
    margin-right: 15px;
}

.btn-login:hover {
    background: linear-gradient(135deg, #FFC100, #FF8A08);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 138, 8, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-register {
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    color: #FFFFFF;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FF6500, #C40C0C);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 12, 12, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main {
    min-height: 100vh;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #C40C0C 0%, #FF6500 100%);
    color: #FFFFFF;
    padding: 5rem 0;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #FFFFFF;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #FF6500;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 101, 0, 0.3);
    transition: transform 0.3s ease;
    color: #FFFFFF;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #FF8A08;
}

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

.feature-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #FFFFFF;
}

/* Login and Register Sections */
.login-section,
.register-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #C40C0C 0%, #FF6500 100%);
    position: relative;
    overflow: hidden;
}

.login-section::before,
.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFFFFF" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFFFFF" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FFFFFF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.login-section .container,
.register-section .container {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.login-content,
.register-content {
    color: #FFFFFF;
}

.login-content h2,
.register-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.login-content h3,
.register-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.login-content p,
.register-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Steps Container */
.steps-container {
    background: rgba(196, 12, 12, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.steps-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Step Items */
.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #FF6500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.step-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.step-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #C40C0C;
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.step-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.step-content strong {
    color: #FFC100;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Benefits List */
.login-content ul,
.register-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.login-content li,
.register-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.login-content li::before,
.register-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #FFC100;
    color: #C40C0C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.login-content .btn,
.register-content .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #C40C0C 0%, #FF6500 100%);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF6500 0%, #C40C0C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #FF8A08 0%, #FFC100 100%);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FFC100 0%, #FF8A08 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Notes */
.login-note,
.register-note {
    font-size: 0.95rem;
    color: #FFFFFF;
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(196, 12, 12, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-note a,
.register-note a {
    color: #FFC100;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-note a:hover,
.register-note a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Hero Images */
.hero-image-login,
.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-image-login img,
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image-login img:hover,
.hero-image img:hover {
    transform: scale(1.05);
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: #FF6500;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 101, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    background: #FF8A08;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #FFFFFF;
}

.game-card p {
    padding: 0 1.5rem 1.5rem;
    color: #FFFFFF;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: #FF8A08;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 138, 8, 0.3);
    color: #FFFFFF;
}

.benefit-item h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #FFFFFF;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #FF6500;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 101, 0, 0.3);
    position: relative;
    color: #FFFFFF;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #FFFFFF;
}

.testimonial-author {
    color: #FFC100;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #C40C0C 0%, #FF6500 100%);
    color: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #FFC100;
}

.stat-item p {
    color: #FFFFFF;
}

/* CTA Section */
.cta-section {
    background: #FF8A08;
    text-align: center;
    color: #FFFFFF;
}

/* Footer */
.footer {
    background: #C40C0C;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFC100;
}

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

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

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-section a:focus {
    color: #FFC100;
}

.footer-section p {
    color: #FFFFFF;
}

/* Games Slider Section */
.games-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #C40C0C 0%, #FF6500 100%);
    position: relative;
    overflow: hidden;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFFFFF" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFFFFF" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FFFFFF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.slider-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.slider-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFC100;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-description {
    font-size: 1.2rem;
    color: #FFFFFF;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobile Slider Container */
.mobile-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Slider Navigation */
.slider-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #FFC100;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: -25px;
}

.next-arrow {
    right: -25px;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

/* Slider Track */
.slider-track {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide {
    position: absolute;
    width: 280px;
    height: 400px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8) translateX(-300px);
    pointer-events: none;
    filter: blur(3px) brightness(0.4);
    z-index: 1;
}

/* Show only 3 slides at once */
.slider-slide.visible {
    opacity: 1;
    pointer-events: auto;
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1.1) translateX(0);
    z-index: 10;
    pointer-events: auto;
    filter: blur(0px) brightness(1);
}

/* Left slide */
.slider-slide.visible.left {
    transform: scale(0.8) translateX(-300px);
    z-index: 2;
    filter: blur(3px) brightness(0.4);
}

/* Right slide */
.slider-slide.visible.right {
    transform: scale(0.8) translateX(300px);
    z-index: 2;
    filter: blur(3px) brightness(0.4);
}

/* Mobile Frame */
.mobile-frame {
    width: 100%;
    height: 100%;
    padding: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.slider-slide:hover .mobile-frame {
    transform: translateY(-5px);
}

.mobile-screen {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.slider-slide:hover .mobile-screen img {
    transform: scale(1.05);
}

.game-currency {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFC100;
    color: #C40C0C;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

/* Game Thumbnails */
.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    transform: scale(0.9);
}

.thumbnail-item.active {
    opacity: 1;
    transform: scale(1);
}

.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-item img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    margin-bottom: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.thumbnail-item.active img {
    background: #FFC100;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.game-name {
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Slider Tagline */
.slider-tagline {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.slider-tagline p {
    font-size: 1.1rem;
    color: #FFFFFF;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    padding: 20px;
    background: rgba(196, 12, 12, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slider-slide {
        width: 250px;
        height: 350px;
    }
    
    /* Adjust positioning for smaller screens */
    .slider-slide.visible.left {
        transform: scale(0.8) translateX(-250px);
    }
    
    .slider-slide.visible.right {
        transform: scale(0.8) translateX(250px);
    }
}

@media (max-width: 768px) {
    .games-slider-section {
        padding: 60px 0;
    }
    
    .slider-header .section-title {
        font-size: 2.5rem;
    }
    
    .slider-subtitle {
        font-size: 1.3rem;
    }
    
    .slider-description {
        font-size: 1.1rem;
    }
    
    .slider-track {
        height: 450px;
    }
    
    .slider-slide {
        width: 220px;
        height: 300px;
    }
    
    /* Adjust positioning for tablet screens */
    .slider-slide.visible.left {
        transform: scale(0.8) translateX(-200px);
    }
    
    .slider-slide.visible.right {
        transform: scale(0.8) translateX(200px);
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
    }
    
    .prev-arrow {
        left: -10px;
    }
    
    .next-arrow {
        right: -10px;
    }
    
    .game-thumbnails {
        gap: 15px;
    }
    
    .thumbnail-item img {
        width: 50px;
        height: 50px;
    }
    
    .game-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .slider-header .section-title {
        font-size: 2rem;
    }
    
    .slider-subtitle {
        font-size: 1.1rem;
    }
    
    .slider-description {
        font-size: 1rem;
    }
    
    .slider-track {
        height: 400px;
    }
    
    .slider-slide {
        width: 200px;
        height: 280px;
    }
    
    /* Adjust positioning for mobile screens */
    .slider-slide.visible.left {
        transform: scale(0.8) translateX(-160px);
    }
    
    .slider-slide.visible.right {
        transform: scale(0.8) translateX(160px);
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .prev-arrow {
        left: -5px;
    }
    
    .next-arrow {
        right: -5px;
    }
    
    .game-thumbnails {
        gap: 10px;
    }
    
    .thumbnail-item img {
        width: 45px;
        height: 45px;
    }
    
    .game-name {
        font-size: 0.75rem;
    }
}

/* Add margin to main content to account for fixed header */
main {
    margin-top: 80px;
}

@media (max-width: 768px) {
    main {
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    main {
        margin-top: 65px;
    }
}

/* Loading and Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-buttons,
    .hero-buttons,
    .cta-buttons {
        display: none;
    }

    body {
        background: #FFFFFF;
        color: #C40C0C;
    }

    .hero {
        background: #FFFFFF;
        color: #C40C0C;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #FFFFFF;
    }

    .nav-link {
        border: 1px solid transparent;
    }

    .nav-link:hover,
    .nav-link:focus {
        border-color: #FFC100;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}

/* ===== ENHANCED PAGE SECTION STYLES ===== */
/* About Us, Privacy Policy, Terms & Conditions, Disclaimer, FAQ, Contact Us */

/* ===== HERO SECTIONS ===== */
.about-hero,
.privacy-hero,
.terms-hero,
.disclaimer-hero,
.faq-hero,
.contact-hero {
    background: linear-gradient(135deg, #C40C0C 0%, #FF6500 50%, #FFC100 100%);
    padding: 140px 0 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero::before,
.privacy-hero::before,
.terms-hero::before,
.disclaimer-hero::before,
.faq-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 101, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(196, 12, 12, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(20px) rotate(-1deg); }
}

.about-hero .hero-container,
.privacy-hero .hero-container,
.terms-hero .hero-container,
.disclaimer-hero .hero-container,
.faq-hero .hero-container,
.contact-hero .hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1,
.privacy-hero h1,
.terms-hero h1,
.disclaimer-hero h1,
.faq-hero h1,
.contact-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFFFFF, #FFC100, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(255, 193, 0, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(255, 193, 0, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(255, 193, 0, 0.6)); }
}

.about-hero p,
.privacy-hero p,
.terms-hero p,
.disclaimer-hero p,
.faq-hero p,
.contact-hero p {
    font-size: 1.4rem;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== CONTENT SECTIONS ===== */
.page-content {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
}

.page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, #FFFFFF 100%);
}

.page-content .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* ===== ENHANCED SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(135deg, #FFC100, #FF6500);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(255, 193, 0, 0.4);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== PREMIUM CONTENT CARDS ===== */
.content-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 193, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #C40C0C, #FF6500, #FFC100);
    border-radius: 25px 25px 0 0;
}

.content-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 193, 0, 0.1), rgba(255, 101, 0, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 193, 0, 0.3);
}

.content-card:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.content-card h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    position: relative;
}

.content-card h3::before {
    content: '🎯';
    margin-right: 20px;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: bounce 2s ease-in-out infinite;
}

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

.content-card p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
}

.content-card ul,
.content-card ol {
    margin: 25px 0;
    padding-left: 35px;
}

.content-card li {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
}

.content-card ul li::before {
    content: '✓';
    position: absolute;
    left: -30px;
    top: 0;
    background: linear-gradient(135deg, #FFC100, #FF6500);
    color: #FFFFFF;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(255, 193, 0, 0.3);
}

.content-card ol li {
    counter-increment: item;
}

.content-card ol li::before {
    content: counter(item);
    position: absolute;
    left: -35px;
    top: 0;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    color: #FFFFFF;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(196, 12, 12, 0.3);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
}

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

.content-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C40C0C;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.content-card h3::before {
    content: '🎯';
    margin-right: 15px;
    font-size: 1.5rem;
}

.content-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.content-card ul,
.content-card ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-card li {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}

.content-card ul li::before {
    content: '✓';
    position: absolute;
    left: -25px;
    top: 0;
    color: #FFC100;
    font-weight: 700;
    font-size: 1.2rem;
}

.content-card ol li {
    counter-increment: item;
}

.content-card ol li::before {
    content: counter(item);
    position: absolute;
    left: -30px;
    top: 0;
    background: linear-gradient(135deg, #FF8A08, #FFC100);
    color: #FFFFFF;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ===== ENHANCED FAQ STYLES ===== */
.faq-section {
    background: linear-gradient(135deg, #C40C0C 0%, #FF6500 50%, #FFC100 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 193, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(255, 101, 0, 0.15) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.05); }
}

.faq-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(255, 193, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C40C0C, #FF6500, #FFC100);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item.active {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 193, 0, 0.3);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '❓';
    margin-right: 15px;
    font-size: 1.5rem;
    color: #FFC100;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 0, 0.3));
}

.faq-question::after {
    content: '▼';
    font-size: 1.2rem;
    color: #FF6500;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-question:hover {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    color: #C40C0C;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #FFFFFF;
    border-top: 1px solid rgba(255, 193, 0, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
}

.faq-answer li::before {
    content: '•';
    color: #FFC100;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* ===== ENHANCED CONTACT FORM STYLES ===== */
.contact-form {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(255, 193, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C40C0C, #FF6500, #FFC100);
    border-radius: 25px 25px 0 0;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    position: relative;
}

.form-group label::after {
    content: ' *';
    color: #C40C0C;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 193, 0, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: #333;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFC100;
    box-shadow: 0 0 0 3px rgba(255, 193, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(255, 193, 0, 0.4);
}

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

.submit-btn {
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    color: #FFFFFF;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(196, 12, 12, 0.3);
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 12, 12, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* ===== ENHANCED CONTACT INFO STYLES ===== */
.contact-info {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(255, 193, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C40C0C, #FF6500, #FFC100);
    border-radius: 25px 25px 0 0;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.contact-info h3::before {
    content: '📞';
    margin-right: 15px;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.contact-info li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 193, 0, 0.1);
    display: flex;
    align-items: center;
    color: #555;
    font-size: 1.1rem;
}

.contact-info li:last-child {
    border-bottom: none;
}

.contact-info li::before {
    content: '📍';
    margin-right: 15px;
    font-size: 1.2rem;
    color: #FFC100;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 0, 0.3));
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    color: #FFFFFF;
    padding: 25px 30px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #FF6500, #C40C0C);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

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

/* Contact Form Styles */
.contact-form {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 193, 0, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #C40C0C;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 193, 0, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF8A08;
    box-shadow: 0 0 0 3px rgba(255, 138, 8, 0.1);
    transform: translateY(-2px);
}

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

.submit-btn {
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    color: #FFFFFF;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(196, 12, 12, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #FF6500, #C40C0C);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(196, 12, 12, 0.4);
}

/* Contact Info Styles */
.contact-info {
    background: linear-gradient(135deg, #FF8A08, #FFC100);
    border-radius: 20px;
    padding: 40px;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #FFC100;
}

.contact-method span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== ENHANCED RESPONSIVE DESIGN FOR ALL PAGES ===== */
@media (max-width: 1200px) {
    .page-content .container {
        max-width: 900px;
        padding: 0 25px;
    }
    
    .content-card {
        padding: 40px;
    }
}

@media (max-width: 1024px) {
    .about-hero,
    .privacy-hero,
    .terms-hero,
    .disclaimer-hero,
    .faq-hero,
    .contact-hero {
        padding: 120px 0 80px 0;
        min-height: 50vh;
    }
    
    .about-hero h1,
    .privacy-hero h1,
    .terms-hero h1,
    .disclaimer-hero h1,
    .faq-hero h1,
    .contact-hero h1 {
        font-size: 3.2rem;
    }
    
    .page-content {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .content-card {
        padding: 35px;
        margin-bottom: 40px;
    }
    
    .contact-form,
    .contact-info {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .privacy-hero,
    .terms-hero,
    .disclaimer-hero,
    .faq-hero,
    .contact-hero {
        padding: 100px 0 60px 0;
        min-height: 40vh;
    }
    
    .about-hero h1,
    .privacy-hero h1,
    .terms-hero h1,
    .disclaimer-hero h1,
    .faq-hero h1,
    .contact-hero h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .about-hero p,
    .privacy-hero p,
    .terms-hero p,
    .disclaimer-hero p,
    .faq-hero p,
    .contact-hero p {
        font-size: 1.2rem;
        max-width: 600px;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .page-content .container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header h2::before {
        width: 100px;
        height: 5px;
    }
    
    .section-header h2::after {
        width: 50px;
        height: 2px;
    }
    
    .content-card {
        padding: 30px;
        margin-bottom: 30px;
        border-radius: 20px;
    }
    
    .content-card h3 {
        font-size: 1.6rem;
    }
    
    .content-card h3::before {
        font-size: 1.5rem;
        margin-right: 15px;
    }
    
    .faq-item {
        border-radius: 15px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .faq-question::before {
        font-size: 1.3rem;
        margin-right: 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px;
        border-radius: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 16px 18px;
        border-radius: 12px;
    }
    
    .submit-btn {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .about-hero h1,
    .privacy-hero h1,
    .terms-hero h1,
    .disclaimer-hero h1,
    .faq-hero h1,
    .contact-hero h1 {
        font-size: 2.4rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-card h3 {
        font-size: 1.4rem;
        flex-direction: column;
        text-align: center;
    }
    
    .content-card h3::before {
        margin: 0 0 15px 0;
    }
    
    .faq-question {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .faq-question::before {
        margin: 0 0 10px 0;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .privacy-hero,
    .terms-hero,
    .disclaimer-hero,
    .faq-hero,
    .contact-hero {
        padding: 80px 0 50px 0;
        min-height: 35vh;
    }
    
    .about-hero h1,
    .privacy-hero h1,
    .terms-hero h1,
    .disclaimer-hero h1,
    .faq-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .about-hero p,
    .privacy-hero p,
    .terms-hero p,
    .disclaimer-hero p,
    .faq-hero p,
    .contact-hero p {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .page-content {
        padding: 50px 0;
    }
    
    .page-content .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2::before {
        width: 80px;
        height: 4px;
    }
    
    .section-header h2::after {
        width: 40px;
        height: 2px;
    }
    
    .content-card {
        padding: 25px;
        margin-bottom: 25px;
        border-radius: 15px;
    }
    
    .content-card h3 {
        font-size: 1.3rem;
    }
    
    .content-card h3::before {
        font-size: 1.2rem;
        margin: 0 0 12px 0;
    }
    
    .content-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .content-card ul,
    .content-card ol {
        padding-left: 25px;
    }
    
    .content-card li {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .faq-item {
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-question::before {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px 20px;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
        border-radius: 15px;
    }
    
    .contact-form h3,
    .contact-info h3 {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form h3::before,
    .contact-info h3::before {
        margin: 0 0 12px 0;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 200px;
    }
    
    .contact-info li {
        padding: 12px 0;
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .contact-info li::before {
        margin: 0 0 8px 0;
    }
}

@media (max-width: 360px) {
    .about-hero h1,
    .privacy-hero h1,
    .terms-hero h1,
    .disclaimer-hero h1,
    .faq-hero h1,
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .content-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .content-card h3 {
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
}

/* Login and Register Sections */
.login-section,
.register-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #C40C0C 0%, #FF6500 100%);
    position: relative;
    overflow: hidden;
}

.login-section::before,
.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.login-section .container,
.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.login-content,
.register-content {
    color: #FFFFFF;
}

.login-content h2,
.register-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFFFFF, #FFC100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.login-content p,
.register-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.steps-container {
    margin: 30px 0;
}

.steps-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #FFC100;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFC100, #FF6500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(255, 193, 0, 0.3);
}

.step-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.step-content {
    flex: 1;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(196, 12, 12, 0.3);
}

.step-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #FFFFFF;
}

.step-content strong {
    color: #FFC100;
    font-weight: 600;
}

.login-content h3,
.register-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: #FFC100;
}

.login-content ul,
.register-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.login-content li,
.register-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #F0F0F0;
    font-size: 1rem;
}

.login-content li::before,
.register-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #FFC100;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #FFC100, #FF6500);
    color: #FFFFFF;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    color: #FFFFFF;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 12, 12, 0.4);
}

.login-note,
.register-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #FFC100;
    font-size: 0.95rem;
    color: #F0F0F0;
}

.login-note a,
.register-note a {
    color: #FFC100;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-note a:hover,
.register-note a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.hero-image-login,
.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-image-login img,
.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-image-login img:hover,
.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 193, 0, 0.5);
}

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

.hero-image img:nth-child(2) {
    transform: translateX(20px);
}

.hero-image img:nth-child(3) {
    transform: translateX(-20px);
}

/* Responsive Design for Login/Register Sections */
@media (max-width: 1024px) {
    .login-section .container,
    .register-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .step-item {
        text-align: left;
    }
    
    .hero-image-login img,
    .hero-image img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .login-section,
    .register-section {
        padding: 60px 0;
    }
    
    .login-content h2,
    .register-content h2 {
        font-size: 2rem;
    }
    
    .step-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .step-icon img {
        width: 25px;
        height: 25px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-image-login img,
    .hero-image img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .login-content h2,
    .register-content h2 {
        font-size: 1.8rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .step-icon {
        margin: 0 auto 15px auto;
    }
    
    .step-content {
        text-align: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-image-login img,
    .hero-image img {
        max-width: 250px;
    }
}

/* ===== PAGE-SPECIFIC CONTENT STYLES ===== */

/* ===== ABOUT US PAGE STYLES ===== */
.about-content {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FFC100, #FF6500);
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: #FFFFFF;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 193, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    border-radius: 20px 20px 0 0;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 193, 0, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C40C0C;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.mission-card h3::before {
    content: '🎯';
    margin-right: 15px;
    font-size: 1.5rem;
}

.vision-card h3::before {
    content: '🔮';
    margin-right: 15px;
    font-size: 1.5rem;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 193, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C40C0C, #FF6500, #FFC100);
    border-radius: 20px 20px 0 0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 193, 0, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C40C0C;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 193, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    border-radius: 20px 20px 0 0;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 193, 0, 0.3);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid rgba(255, 193, 0, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover img {
    border-color: rgba(255, 193, 0, 0.5);
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #C40C0C;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */
.privacy-content,
.terms-content,
.disclaimer-content {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.privacy-content .container,
.terms-content .container,
.disclaimer-content .container {
    max-width: 900px;
}

.privacy-content h2,
.terms-content h2,
.disclaimer-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #C40C0C;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid rgba(255, 193, 0, 0.3);
    position: relative;
}

.privacy-content h2::before,
.terms-content h2::before,
.disclaimer-content h2::before {
    content: '📋';
    margin-right: 15px;
    font-size: 1.8rem;
}

.privacy-content h3,
.terms-content h3,
.disclaimer-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #FF6500;
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
}

.privacy-content h3::before,
.terms-content h3::before,
.disclaimer-content h3::before {
    content: '▶';
    margin-right: 12px;
    color: #FFC100;
    font-size: 1.2rem;
}

.privacy-content p,
.terms-content p,
.disclaimer-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-content ul,
.terms-content ul,
.disclaimer-content ul,
.privacy-content ol,
.terms-content ol,
.disclaimer-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-content li,
.terms-content li,
.disclaimer-content li {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}

.privacy-content ul li::before,
.terms-content ul li::before,
.disclaimer-content ul li::before {
    content: '•';
    color: #FFC100;
    font-weight: bold;
    position: absolute;
    left: -20px;
    font-size: 1.5rem;
}

.privacy-content ol li,
.terms-content ol li,
.disclaimer-content ol li {
    counter-increment: item;
}

.privacy-content ol li::before,
.terms-content ol li::before,
.disclaimer-content ol li::before {
    content: counter(item);
    position: absolute;
    left: -30px;
    top: 0;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    color: #FFFFFF;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ===== FAQ PAGE STYLES ===== */
.faq-content {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.faq-content .container {
    max-width: 800px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 60px;
}

.faq-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.faq-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CONTACT US PAGE STYLES ===== */
.contact-content {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #C40C0C, #FF6500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN FOR CONTENT SECTIONS ===== */
@media (max-width: 1024px) {
    .about-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-content,
    .mission-vision,
    .values-section,
    .team-section,
    .privacy-content,
    .terms-content,
    .disclaimer-content,
    .faq-content,
    .contact-content {
        padding: 60px 0;
    }
    
    .about-text h2,
    .privacy-content h2,
    .terms-content h2,
    .disclaimer-content h2,
    .faq-intro h2,
    .contact-intro h2 {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card,
    .value-card,
    .team-member {
        padding: 30px 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .about-content,
    .mission-vision,
    .values-section,
    .team-section,
    .privacy-content,
    .terms-content,
    .disclaimer-content,
    .faq-content,
    .contact-content {
        padding: 40px 0;
    }
    
    .about-text h2,
    .privacy-content h2,
    .terms-content h2,
    .disclaimer-content h2,
    .faq-intro h2,
    .contact-intro h2 {
        font-size: 1.8rem;
    }
    
    .mission-card,
    .vision-card,
    .value-card,
    .team-member {
        padding: 25px 20px;
    }
    
    .about-text p,
    .privacy-content p,
    .terms-content p,
    .disclaimer-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
}

/* ===== EXPLICIT TYPOGRAPHY FOR ALL HEADINGS ===== */
/* H2 elements */
h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

section h2,
article h2,
aside h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 600;
}

/* H3 elements */
h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

section h3,
article h3,
aside h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
}

/* H4 elements */
h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

section h4,
article h4,
aside h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 600;
}

/* H5 elements */
h5 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

section h5,
article h5,
aside h5 {
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 600;
}

/* H6 elements */
h6 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

section h6,
article h6,
aside h6 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
}
