/* Remi 101 Yono - Main Stylesheet */
/* Theme Colors */
:root {
    --lucky-green: #28A745;
    --accent-red: #FF2E2E;
    --deep-purple: #4B0082;
    --golden-yellow: #FFD54F;
    --midnight-black: #121212;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #6C757D;
    --border-color: #E9ECEF;
}

/* 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: var(--midnight-black);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--midnight-black);
}

h1 {
    font-size: 2.5rem;
    color: var(--deep-purple);
}

h2 {
    font-size: 2rem;
    color: var(--deep-purple);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--lucky-green);
}

h4 {
    font-size: 1.25rem;
    color: var(--accent-red);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Links */
a {
    color: var(--lucky-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--deep-purple);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--lucky-green);
    color: var(--white);
    border-color: var(--lucky-green);
}

.btn-primary:hover {
    background-color: var(--deep-purple);
    border-color: var(--deep-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--lucky-green);
    border-color: var(--lucky-green);
}

.btn-outline:hover {
    background-color: var(--lucky-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    color: var(--midnight-black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: var(--lucky-green);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Mobile Menu Toggle Button */
.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;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--lucky-green);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.mobile-menu-header .nav-logo {
    margin: 0;
}

.mobile-menu-header .nav-logo img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--midnight-black);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--lucky-green);
}

.mobile-menu-panel .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    flex: 1;
}

.mobile-menu-panel .nav-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
}

.mobile-menu-panel .nav-menu a {
    display: block;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    color: var(--midnight-black);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu-panel .nav-menu a:hover,
.mobile-menu-panel .nav-menu a[aria-current="page"] {
    color: var(--lucky-green);
    background-color: rgba(40, 167, 69, 0.1);
    padding-left: 2.5rem;
}

.mobile-menu-panel .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    margin-top: auto;
    background-color: var(--light-gray);
}

.mobile-menu-panel .nav-actions .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--light-gray);
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: ">";
    margin-left: 0.5rem;
    color: var(--dark-gray);
}

.breadcrumb-list a {
    color: var(--dark-gray);
}

.breadcrumb-list a:hover {
    color: var(--lucky-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 4rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--deep-purple), var(--lucky-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Brand Introduction */
.brand-intro {
    padding: 4rem 0;
    background-color: var(--white);
}

.intro-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Platform Features */
.platform-features {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

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

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lucky-green), var(--deep-purple), var(--accent-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--lucky-green);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card img {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    border: 3px solid var(--lucky-green);
    padding: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.1);
    border-color: var(--deep-purple);
    box-shadow: 0 8px 25px rgba(75, 0, 130, 0.3);
}

.feature-card h3 {
    margin-bottom: 1.2rem;
    color: var(--deep-purple);
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--lucky-green);
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--midnight-black);
}

/* Registration Process */
.registration-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.registration-process::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="%2328A745" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%234B0082" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23FF2E2E" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.registration-process .container {
    position: relative;
    z-index: 1;
}

.process-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.process-text {
    max-width: 800px;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.process-text:hover {
    border-color: var(--lucky-green);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.process-text h3 {
    color: var(--deep-purple);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--deep-purple), var(--lucky-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 3px solid var(--lucky-green);
    padding-bottom: 1rem;
}

.process-text h4 {
    color: var(--accent-red);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    text-align: center;
    background-color: rgba(255, 46, 46, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-red);
    position: relative;
}

.process-text h4::before {
    content: '📝';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.process-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    text-align: justify;
    position: relative;
    padding-left: 1rem;
}

.process-text p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--lucky-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.process-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid var(--white);
}

.process-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Advantages & Security */
.advantages-security {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

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

.advantage-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-3px);
}

.advantage-item h3 {
    color: var(--lucky-green);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-gray);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    background-color: var(--deep-purple);
    color: var(--white);
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item h3:hover {
    background-color: var(--lucky-green);
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    background-color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--lucky-green) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: var(--golden-yellow);
    color: var(--midnight-black);
    border-color: var(--golden-yellow);
}

.cta-section .btn-primary:hover {
    background-color: var(--white);
    color: var(--deep-purple);
    border-color: var(--white);
}

.cta-section .btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-outline:hover {
    background-color: var(--white);
    color: var(--deep-purple);
}

/* Footer */
.footer {
    background-color: var(--midnight-black);
    color: var(--white);
    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 {
    color: var(--golden-yellow);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--golden-yellow);
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .mobile-menu-panel {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .process-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-text {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .process-text h3 {
        font-size: 1.6rem;
    }
    
    .process-text h4 {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }
    
    .process-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .features-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card img {
        width: 80px;
        height: 80px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .brand-intro,
    .platform-features,
    .registration-process,
    .advantages-security,
    .faq-section {
        padding: 2rem 0;
    }
}

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

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--golden-yellow);
    outline-offset: 2px;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

.policy-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.policy-text h2 {
    color: var(--deep-purple);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
    border-bottom: 3px solid var(--lucky-green);
    padding-bottom: 1rem;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    color: var(--lucky-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    text-align: center;
    background-color: var(--light-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--lucky-green);
}

.policy-text h4 {
    color: var(--accent-red);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    text-align: center;
    background-color: rgba(255, 46, 46, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
}

.policy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    text-align: justify;
}

.policy-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    background-color: rgba(40, 167, 69, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--lucky-green);
}

.policy-text li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-size: 1.05rem;
}

/* About page styles */
.about-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.about-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    color: var(--deep-purple);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.about-text h3 {
    color: var(--lucky-green);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.about-text h4 {
    color: var(--accent-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--dark-gray);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-stats {
    background-color: var(--light-gray);
    padding: 3rem 0;
    border-radius: 12px;
}

.about-stats h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--lucky-green);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Support page styles */
.support-content {
    padding: 3rem 0;
}

.support-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.support-intro h2 {
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.support-intro p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.support-options {
    margin-bottom: 3rem;
}

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

.support-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card h3 {
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.support-card p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.support-card ul {
    list-style: none;
    padding: 0;
}

.support-card li {
    padding: 0.3rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.support-card li::before {
    content: "✓";
    color: var(--lucky-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-methods {
    background-color: var(--light-gray);
    padding: 3rem 0;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.contact-methods h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.contact-method {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-method h3 {
    color: var(--lucky-green);
    margin-bottom: 1rem;
}

.contact-method p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.support-hours {
    margin-bottom: 3rem;
}

.support-hours h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hours-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.hours-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.faq-preview {
    text-align: center;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.faq-preview h2 {
    margin-bottom: 1rem;
}

.faq-preview p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.faq-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-link {
    color: var(--lucky-green);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--lucky-green);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-link:hover {
    background-color: var(--lucky-green);
    color: var(--white);
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .about-text {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text h4 {
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .policy-content,
    .about-content,
    .support-content {
        padding: 2rem 0;
    }
    
    .policy-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .policy-text h2 {
        font-size: 1.8rem;
    }
    
    .policy-text h3 {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
    
    .policy-text h4 {
        font-size: 1.1rem;
        padding: 0.5rem 0.8rem;
    }
    
    .policy-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .policy-text ul {
        padding: 1rem 1.5rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}
