/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000; /* Black text on light backgrounds */
    background-color: #DEBD7C; /* Warm beige background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #074173; /* Dark blue header */
    box-shadow: 0 2px 10px rgba(7, 65, 115, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF; /* White text on dark blue header */
}

.breadcrumb {
    margin: 0.5rem 0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.breadcrumb-item a {
    color: #FFFFFF; /* White text on dark blue header */
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb-item a:hover {
    color: #5FFF95; /* Bright accent for hover */
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 1rem 0;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF; /* White text on dark blue header */
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: #5FFF95; /* Bright accent for hover/active */
    background-color: rgba(95, 255, 149, 0.1);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #5FFF95; /* Bright accent for primary buttons */
    color: #000000; /* Black text on bright accent */
    border: 2px solid #5FFF95;
}

.btn-primary:hover {
    background: #4FE085; /* Slightly darker variant for hover */
    border-color: #4FE085;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(95, 255, 149, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF; /* White text on dark backgrounds */
    border: 2px solid #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #074173; /* Dark blue text on white hover */
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #074173 0%, #679AB5 100%);
    color: #FFFFFF; /* White text on dark gradient */
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(95, 255, 149, 0.2);
    border: 1px solid #5FFF95;
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5FFF95;
    backdrop-filter: blur(10px);
    align-self: flex-start;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
}

.brand-highlight {
    background: linear-gradient(45deg, #5FFF95, #4FE085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
    max-width: 500px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 90px;
}

.hero-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5FFF95;
    margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

.hero-actions .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(95, 255, 149, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(95, 255, 149, 0.3);
}

.floating-card .card-icon {
    font-size: 1.2rem;
}

.floating-card .card-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #074173;
}

.floating-card.card-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 25%;
    left: -15%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #DEBD7C; /* Warm beige background */
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000000; /* Black text on beige background */
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000; /* Black text on beige background */
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #679AB5; /* Muted blue-gray background */
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF; /* White text on muted blue-gray */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #DEBD7C; /* Warm beige background for cards */
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #5FFF95; /* Bright accent border */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(95, 255, 149, 0.3);
    border-color: #4FE085; /* Darker accent on hover */
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000; /* Black text on beige background */
}

.feature-card p {
    color: #000000; /* Black text on beige background */
    line-height: 1.6;
}

/* Registration Section Styles */
.registration-section {
    padding: 80px 0;
    background: #DEBD7C; /* Warm beige background */
    position: relative;
}

.registration-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000; /* Black text on beige background */
    font-weight: 700;
}

.registration-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #000000; /* Black text on beige background */
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.registration-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #000000; /* Black text on beige background */
    font-weight: 600;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #FFFFFF; /* White background for steps */
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #5FFF95; /* Bright accent border */
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(95, 255, 149, 0.3);
    border-color: #4FE085; /* Darker accent on hover */
}

.step-number {
    background: #074173; /* Dark blue for step numbers */
    color: #FFFFFF; /* White text on dark blue */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000000; /* Black text on white background */
    font-weight: 600;
}

.step-content p {
    color: #000000; /* Black text on white background */
    line-height: 1.6;
    margin: 0;
}

/* Registration Form Styles */
.registration-form-container {
    background: #FFFFFF; /* White background for form */
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(7, 65, 115, 0.2);
    position: sticky;
    top: 2rem;
    border: 3px solid #5FFF95; /* Bright accent border */
}

.registration-form h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #000000; /* Black text on white background */
    font-weight: 600;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000; /* Black text on white background */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    padding: 12px 16px;
    border: 2px solid #679AB5; /* Muted blue-gray border */
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #FFFFFF;
    color: #000000;
}

.form-group input:focus {
    outline: none;
    border-color: #5FFF95; /* Bright accent on focus */
    box-shadow: 0 0 0 3px rgba(95, 255, 149, 0.2);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #074173; /* Dark blue for links */
    text-decoration: none;
}

.checkbox-group a:hover {
    color: #5FFF95; /* Bright accent on hover */
    text-decoration: underline;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #000000; /* Black text on white background */
}

.login-link a {
    color: #074173; /* Dark blue for links */
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    color: #5FFF95; /* Bright accent on hover */
    text-decoration: underline;
}

/* Login Section Styles */
.login-section {
    padding: 80px 0;
    background: #679AB5; /* Muted blue-gray background */
    position: relative;
}

.login-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF; /* White text on muted blue-gray */
    font-weight: 700;
}

.login-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #FFFFFF; /* White text on muted blue-gray */
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.login-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #FFFFFF; /* White text on muted blue-gray */
    font-weight: 600;
}

.login-form-container {
    background: #FFFFFF; /* White background for login form */
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(7, 65, 115, 0.2);
    position: sticky;
    top: 2rem;
    border: 3px solid #5FFF95; /* Bright accent border */
}

.login-form h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #000000; /* Black text on white background */
    font-weight: 600;
}

.signin-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.forgot-password {
    text-align: center;
    margin-top: 1rem;
}

.forgot-password a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.login-benefits {
    background: #DEBD7C; /* Warm beige background for benefits */
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid #5FFF95; /* Bright accent border */
}

.login-benefits h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000000; /* Black text on beige background */
    font-weight: 600;
}

.login-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-benefits li {
    padding: 0.5rem 0;
    color: #000000; /* Black text on beige background */
    position: relative;
    padding-left: 1.5rem;
}

.login-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5FFF95; /* Bright accent for checkmarks */
    font-weight: bold;
}

.register-link {
    text-align: center;
    color: #000000; /* Black text on white background */
}

.register-link a {
    color: #074173; /* Dark blue for links */
    text-decoration: none;
    font-weight: 600;
}

.register-link a:hover {
    color: #5FFF95; /* Bright accent on hover */
    text-decoration: underline;
}

/* Registration Process Section */
.registration-section {
    padding: 80px 0;
    background: #FFFFFF; /* White background */
}

.registration-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000000; /* Black text on white background */
}

.registration-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #000000; /* Black text on white background */
}

.registration-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000; /* Black text on white background */
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: #DEBD7C; /* Warm beige background */
}

.advantages-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000; /* Black text on beige background */
}

.advantages-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #000000; /* Black text on beige background */
}

.advantages-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000; /* Black text on beige background */
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #DEBD7C; /* Warm beige background */
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000; /* Black text on beige background */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: #FFFFFF; /* White background for cards */
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(7, 65, 115, 0.1);
    border: 2px solid #5FFF95; /* Bright accent border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(7, 65, 115, 0.2);
    border-color: #4FE085; /* Darker accent on hover */
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #5FFF95; /* Bright accent for quote mark */
    font-weight: bold;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000; /* Black text on white background */
    font-style: italic;
    margin: 0;
    padding-left: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    color: #074173; /* Dark blue for names */
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    color: #000000; /* Black text for titles */
    opacity: 0.8;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: #FFFFFF; /* White background for stats */
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(7, 65, 115, 0.1);
    border: 2px solid #5FFF95; /* Bright accent border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(7, 65, 115, 0.15);
    border-color: #4FE085; /* Darker accent on hover */
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #074173; /* Dark blue for numbers */
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #000000; /* Black text for labels */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Activities Slider Section */
.activities-slider-section {
    padding: 80px 0;
    background: #FFFFFF; /* White background */
}

.activities-slider-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000; /* Black text on white background */
    font-weight: 700;
}

.activities-slider-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #000000; /* Black text on white background */
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.activities-slider-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Main Image Container */
.main-image-container {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(7, 65, 115, 0.2);
    background: #FFFFFF;
    border: 3px solid #5FFF95; /* Bright accent border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(7, 65, 115, 0.3);
}

.main-image {
    height: auto;
    display: block;
    transition: opacity 0.5s ease;
    max-height: 600px;
    object-fit: cover;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #5FFF95; /* Bright accent background */
    color: #000000; /* Black text on bright accent */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(95, 255, 149, 0.3);
    z-index: 10;
}

.nav-arrow:hover {
    background: #4FE085; /* Darker accent on hover */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(95, 255, 149, 0.4);
}

.nav-arrow-left {
    left: 20px;
}

.nav-arrow-right {
    right: 20px;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
}

/* Game Info Overlay */
.game-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(7, 65, 115, 0.9));
    color: #FFFFFF; /* White text on dark overlay */
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.main-image-wrapper:hover .game-info-overlay {
    transform: translateY(0);
}

.current-game-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.current-game-desc {
    font-size: 1rem;
    color: #FFFFFF;
    opacity: 0.9;
    margin: 0;
}

/* Thumbnails Container */
.thumbnails-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.thumbnail-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #FFFFFF;
    border: 2px solid #679AB5; /* Muted blue-gray border */
    box-shadow: 0 4px 12px rgba(103, 154, 181, 0.2);
}

.thumbnail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(103, 154, 181, 0.3);
    border-color: #5FFF95; /* Bright accent on hover */
}

.thumbnail-item.active {
    border-color: #5FFF95; /* Bright accent for active */
    box-shadow: 0 8px 20px rgba(95, 255, 149, 0.4);
    transform: translateY(-3px);
}

.thumbnail-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-image {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(7, 65, 115, 0.9));
    color: #FFFFFF;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
    transform: translateY(0);
}

.game-name {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.play-btn {
    font-size: 0.9rem;
    color: #5FFF95; /* Bright accent for play button */
    font-weight: 600;
}

/* Activities CTA */
.activities-cta {
    text-align: center;
    padding: 2rem;
    background: #DEBD7C; /* Warm beige background */
    border-radius: 16px;
    border: 2px solid #5FFF95; /* Bright accent border */
}

.activities-cta-text {
    margin-top: 1rem;
    color: #000000; /* Black text on beige background */
    font-size: 1rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #FFFFFF; /* White background */
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000; /* Black text on white background */
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #DEBD7C; /* Warm beige background for FAQ items */
    border-radius: 12px;
    border-left: 4px solid #5FFF95; /* Bright accent border */
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000000; /* Black text on beige background */
}

.faq-item p {
    color: #000000; /* Black text on beige background */
    line-height: 1.6;
}

.faq-item a {
    color: #074173; /* Dark blue for links */
    text-decoration: none;
}

.faq-item a:hover {
    color: #5FFF95; /* Bright accent on hover */
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #074173 0%, #679AB5 100%);
    color: #FFFFFF; /* White text on dark gradient */
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #074173; /* Dark blue footer */
    color: #FFFFFF; /* White text on dark blue */
    padding: 60px 0 20px;
}

.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: #fff;
}

.footer-section p {
    color: #FFFFFF; /* White text on dark blue footer */
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #FFFFFF; /* White text on dark blue footer */
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    color: #5FFF95; /* Bright accent on hover */
    opacity: 1;
}

.footer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #FFFFFF; /* White text on dark blue footer */
    opacity: 0.8;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #FFFFFF; /* White hamburger lines */
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 65, 115, 0.95); /* Dark blue overlay */
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #074173; /* Dark blue background */
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-brand-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-left: 0.5rem;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-nav-menu li {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(95, 255, 149, 0.1);
    border-color: #5FFF95; /* Bright accent border */
    color: #5FFF95; /* Bright accent text */
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-mobile {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .navbar .container {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-content {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .mobile-menu-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 40px 0;
        min-height: 60vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.4rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .hero-actions .btn {
        padding: 12px 24px;
        font-size: 1rem;
        min-width: 130px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-image-container {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .mobile-nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .registration-content,
    .login-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration-section h2,
    .login-section h2 {
        font-size: 2rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .registration-form-container,
    .login-form-container {
        padding: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Hero Section Small Mobile */
    .hero {
        padding: 40px 0;
        min-height: 60vh;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 0.8rem;
    }
    
    .hero-stats {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.5rem 0.75rem;
        min-width: 70px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-actions .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 110px;
    }
    
    .hero-image-container {
        max-width: 260px;
    }
    
    /* Secondary Pages Mobile Styles */
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 60px;
    }
    
    .about-hero-img {
        height: 250px;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .mission-values {
        padding: 60px 0;
        margin: 60px 0;
    }
    
    .mission-values h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .company-story {
        padding: 60px 30px;
        margin: 60px 0;
    }
    
    .company-story h2 {
        font-size: 2rem;
    }
    
    .support-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-method {
        padding: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legal-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .legal-section h2 {
        font-size: 1.8rem;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
    
    .legal-highlight {
        padding: 20px;
        margin: 20px 0;
    }
    
    .contact-info {
        padding: 40px 20px;
    }
    
    .registration-section,
    .login-section {
        padding: 60px 0;
    }
    
    .registration-section h2,
    .login-section h2 {
        font-size: 1.8rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem auto;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-card::before {
        font-size: 2.5rem;
        top: -3px;
        left: 10px;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Activities Slider Mobile Styles */
    .activities-slider-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thumbnails-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .thumbnail-image {
        height: 80px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow-left {
        left: 10px;
    }
    
    .nav-arrow-right {
        right: 10px;
    }
    
    .nav-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .main-image {
        max-height: 400px;
    }
    
    .game-info-overlay {
        padding: 1rem;
    }
    
    .current-game-title {
        font-size: 1.2rem;
    }
    
    .current-game-desc {
        font-size: 0.9rem;
    }
    
    .activities-cta {
        padding: 1.5rem;
    }
}

/* Additional Focus and Accessibility Styles */
.btn:focus,
.nav-link:focus,
a:focus,
input:focus {
    outline: 2px solid #5FFF95; /* Bright accent for focus */
    outline-offset: 2px;
}

/* Form validation styles */
.form-group input.error {
    border-color: #074173; /* Dark blue for error state */
    box-shadow: 0 0 0 3px rgba(7, 65, 115, 0.2);
}

/* Loading state for buttons */
.btn.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #074173;
    color: #FFFFFF;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .feature-card,
    .step {
        border: 3px solid #000000;
    }
}

/* Secondary Pages Styling */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #074173 0%, #679AB5 100%);
    color: #FFFFFF;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* About Us Page Styles */
.about-content {
    padding: 80px 0;
    background: #FFFFFF;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 80px;
}

.about-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(7, 65, 115, 0.2);
    border: 3px solid #5FFF95;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #074173;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
}

.mission-values {
    background: #DEBD7C;
    padding: 80px 0;
    margin: 80px 0;
    border-radius: 20px;
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(7, 65, 115, 0.1);
    border: 2px solid #5FFF95;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 65, 115, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #074173;
    font-weight: 600;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.company-story {
    background: #679AB5;
    padding: 80px 60px;
    border-radius: 20px;
    color: #FFFFFF;
    margin: 80px 0;
}

.company-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #FFFFFF;
}

.company-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Support Page Styles */
.support-content {
    padding: 80px 0;
    background: #FFFFFF;
}

.support-methods {
    margin-bottom: 80px;
}

.support-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-method {
    background: #DEBD7C;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #5FFF95;
    transition: transform 0.3s ease;
}

.support-method:hover {
    transform: translateY(-5px);
}

.support-method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
}

.support-method h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #074173;
    font-weight: 600;
}

.support-method p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 1.5rem;
}

.support-method a {
    color: #074173;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-method a:hover {
    color: #5FFF95;
}

.helpful-tips {
    background: #FFFFFF;
    padding: 80px 0;
    border-top: 3px solid #5FFF95;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-item {
    background: #DEBD7C;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #679AB5;
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-3px);
}

.tip-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.tip-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #074173;
    font-weight: 600;
}

.tip-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.helpful-links {
    background: #679AB5;
    padding: 80px 0;
    color: #FFFFFF;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.helpful-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.helpful-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.link-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: block;
}

.helpful-link h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.helpful-link h3 a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.helpful-link h3 a:hover {
    color: #5FFF95;
}

.helpful-link p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Privacy Policy, Terms & Conditions, Disclaimer Pages */
.legal-content {
    padding: 80px 0;
    background: #FFFFFF;
}

.legal-section {
    margin-bottom: 60px;
    background: #DEBD7C;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #5FFF95;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #074173;
    font-weight: 700;
    border-bottom: 3px solid #5FFF95;
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #074173;
    font-weight: 600;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #074173;
    font-weight: 600;
}

.legal-highlight {
    background: #679AB5;
    color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #5FFF95;
}

.legal-highlight h3 {
    color: #FFFFFF;
    margin-top: 0;
}

.legal-highlight p {
    color: #FFFFFF;
    opacity: 0.95;
}

/* Contact Information Styling */
.contact-info {
    background: #FFFFFF;
    padding: 60px 40px;
    border-radius: 16px;
    border: 3px solid #5FFF95;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #074173;
    text-align: center;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
}

/* Secondary Pages Styles */
.page-header {
    background: linear-gradient(135deg, #074173 0%, #679AB5 100%);
    color: #FFFFFF;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-description {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Content Sections */
.about-content,
.policy-content,
.terms-content,
.disclaimer-content {
    padding: 80px 0;
    background: #FFFFFF;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(7, 65, 115, 0.2);
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #074173;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
}

/* Mission & Values */
.mission-values {
    margin-bottom: 4rem;
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #074173;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(7, 65, 115, 0.1);
    border: 2px solid #5FFF95;
    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(90deg, #5FFF95, #4FE085);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(7, 65, 115, 0.2);
    border-color: #4FE085;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #5FFF95, #4FE085);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(95, 255, 149, 0.3);
}

.value-card h3 {
    font-size: 1.4rem;
    color: #074173;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #000000;
    line-height: 1.6;
    font-size: 1rem;
}

/* Company Story */
.company-story {
    background: #DEBD7C;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 2px solid #5FFF95;
}

.company-story h2 {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 600;
}

.company-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
}

/* Commitment Section */
.commitment-section {
    margin-bottom: 4rem;
}

.commitment-section h2 {
    font-size: 2.2rem;
    color: #074173;
    margin-bottom: 2rem;
    font-weight: 600;
}

.commitment-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 2rem;
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    background: #FFFFFF;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border-left: 4px solid #5FFF95;
    box-shadow: 0 4px 12px rgba(7, 65, 115, 0.1);
    transition: transform 0.3s ease;
}

.commitment-list li:hover {
    transform: translateX(5px);
}

.commitment-list li strong {
    color: #074173;
    font-weight: 600;
}

/* Policy and Terms Content */
.policy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(7, 65, 115, 0.1);
    border: 1px solid #E9ECEF;
    transition: all 0.3s ease;
}

.policy-section:hover,
.terms-section:hover,
.disclaimer-section:hover {
    box-shadow: 0 12px 30px rgba(7, 65, 115, 0.15);
    transform: translateY(-2px);
}

.policy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    font-size: 1.8rem;
    color: #074173;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #5FFF95;
    padding-bottom: 0.5rem;
}

.policy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    font-size: 1.4rem;
    color: #074173;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.policy-section p,
.terms-section p,
.disclaimer-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1.5rem;
}

.policy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.policy-section ul li,
.terms-section ul li,
.disclaimer-section ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #F8F9FA;
    position: relative;
    padding-left: 1.5rem;
}

.policy-section ul li::before,
.terms-section ul li::before,
.disclaimer-section ul li::before {
    content: "•";
    color: #5FFF95;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-section ul li:last-child,
.terms-section ul li:last-child,
.disclaimer-section ul li:last-child {
    border-bottom: none;
}

.policy-section strong,
.terms-section strong,
.disclaimer-section strong {
    color: #074173;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background: #DEBD7C;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #5FFF95;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-info a {
    color: #074173;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: #5FFF95;
    text-decoration: underline;
}

/* Policy Intro */
.policy-intro,
.terms-intro,
.disclaimer-intro {
    background: #F8F9FA;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border-left: 4px solid #5FFF95;
}

.policy-intro h2,
.terms-intro h2,
.disclaimer-intro h2 {
    font-size: 2rem;
    color: #074173;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-intro p,
.terms-intro p,
.disclaimer-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
}

/* Terms Footer */
.terms-footer,
.disclaimer-footer {
    background: #074173;
    color: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.terms-footer h2,
.disclaimer-footer h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.terms-footer p,
.disclaimer-footer p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.terms-footer strong,
.disclaimer-footer strong {
    color: #5FFF95;
    font-weight: 600;
}

/* CTA Section for About Page */
.cta-section {
    background: linear-gradient(135deg, #074173 0%, #679AB5 100%);
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
    border-radius: 20px;
    margin-top: 3rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Responsive Design for Secondary Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .company-story,
    .policy-section,
    .terms-section,
    .disclaimer-section {
        padding: 2rem 1.5rem;
    }
    
    .policy-intro,
    .terms-intro,
    .disclaimer-intro {
        padding: 2rem 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .company-story,
    .policy-section,
    .terms-section,
    .disclaimer-section {
        padding: 1.5rem 1rem;
    }
    
    .policy-intro,
    .terms-intro,
    .disclaimer-intro {
        padding: 1.5rem 1rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav-actions,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        background: white;
        color: black;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}