/* Color Palette Variables */
:root {
    --deep-wine-red: #690B22;
    --soft-coral: #E07A5F;
    --pale-blush: #F1E3D3;
    --brunswick-green: #1B4D3E;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Hover shades */
    --deep-wine-red-hover: #5A0A1E;
    --soft-coral-hover: #D06A4F;
    --pale-blush-hover: #E8D4C3;
    --brunswick-green-hover: #164033;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--pale-blush);
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #690B22 0%, #8B1538 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(105, 11, 34, 0.2);
}

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

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

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.mobile-menu-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.close-icon {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}


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

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

.btn-primary:hover {
    background: var(--soft-coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 122, 95, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--deep-wine-red);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-login {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-register {
    background: var(--soft-coral);
    color: var(--black);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--pale-blush-hover);
    padding: 0.5rem 0;
}

.breadcrumb-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    list-style: none;
}

.breadcrumb-item a {
    color: var(--deep-wine-red);
    text-decoration: none;
}

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

/* Hero Section - Modern Universal Design */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    color: #333;
    padding: 5rem 0;
    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="modern-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23690B22" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23690B22" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23690B22" opacity="0.08"/><circle cx="10" cy="60" r="1" fill="%23690B22" opacity="0.08"/><circle cx="90" cy="40" r="1" fill="%23690B22" opacity="0.08"/><circle cx="30" cy="70" r="1.5" fill="%23690B22" opacity="0.06"/><circle cx="70" cy="30" r="1.5" fill="%23690B22" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23modern-pattern)"/></svg>');
    opacity: 0.4;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #690B22;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(105, 11, 34, 0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #495057;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(105, 11, 34, 0.2);
    transition: transform 0.3s ease;
    border: 3px solid rgba(105, 11, 34, 0.1);
}

.hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(105, 11, 34, 0.3);
}

/* Hero Button Styles */
.btn-hero-primary {
    background: linear-gradient(45deg, #690B22, #8B1538);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(105, 11, 34, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(105, 11, 34, 0.4);
    background: linear-gradient(45deg, #5A0A1E, #7A1230);
}

.btn-hero-secondary {
    background: transparent;
    color: #690B22;
    padding: 18px 35px;
    border: 2px solid #690B22;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
    background: #690B22;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(105, 11, 34, 0.3);
}

/* Hero Section Variations for Different Pages */
.hero-about {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 50%, #d4edda 100%);
}

.hero-support {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d4 50%, #ffd4a3 100%);
}

.hero-privacy {
    background: linear-gradient(135deg, #f8f0ff 0%, #f0e8ff 50%, #e8d4ff 100%);
}

.hero-terms {
    background: linear-gradient(135deg, #fff0f0 0%, #ffe8e8 50%, #ffd4d4 100%);
}

.hero-disclaimer {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #d4d4d4 100%);
}

/* Single Column Hero for Non-Home Pages */
.hero-single {
    text-align: center;
    min-height: 50vh;
}

.hero-single .hero-container {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.hero-single .hero-content {
    max-width: none;
}

.hero-single h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #690B22;
}

.hero-single p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #495057;
}

/* Sections */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: var(--white);
}

section:nth-child(odd) {
    background: var(--pale-blush);
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-wine-red);
}

/* About Section */
.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--soft-coral);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--deep-wine-red);
}

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

.process-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid var(--brunswick-green);
}

.process-item p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.security-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid var(--deep-wine-red);
}

.security-item h3 {
    color: var(--deep-wine-red);
    margin-bottom: 1rem;
}

.security-item p {
    text-align: justify;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--soft-coral);
}

.faq-item h3 {
    color: var(--deep-wine-red);
    margin-bottom: 1rem;
}

.faq-item p {
    margin-bottom: 0;
}

.faq-item a {
    color: var(--deep-wine-red);
    text-decoration: none;
}

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

/* CTA Section */
.cta-section {
    background: var(--brunswick-green);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--deep-wine-red);
    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 {
    margin-bottom: 1rem;
    color: var(--soft-coral);
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--soft-coral);
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--soft-coral);
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: 65vh;
        padding: 4rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.2rem;
        color: #690B22;
    }
    
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1.2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 16px 32px;
        font-size: 1.05rem;
    }
    
    .hero-image img {
        max-width: 400px;
    }
    
    .hero-single .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-single {
        min-height: 50vh;
        padding: 3.5rem 0;
    }
    
    .hero-single h1 {
        font-size: 2.8rem;
        color: #690B22;
    }
    
    .hero-single p {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #690B22 0%, #8B1538 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 2rem;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu.active .mobile-menu-close {
        display: block;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.3s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }
    
    .nav-menu a {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }
    
    .nav-buttons {
        display: none;
    }
    
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #690B22 0%, #8B1538 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 2rem;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu.active .mobile-menu-close {
        display: block;
    }
    
    /* Tablet Hero Section */
    .hero {
        min-height: 70vh;
        padding: 4.5rem 0;
    }
    
    .hero-container {
        max-width: 900px;
        gap: 3.5rem;
    }
    
    .hero h1 {
        font-size: 3.2rem;
        margin-bottom: 1.3rem;
    }
    
    .hero p {
        font-size: 1.25rem;
        margin-bottom: 2.3rem;
    }
    
    .hero-buttons {
        gap: 1.3rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 17px 35px;
        font-size: 1.08rem;
    }
    
    .hero-image img {
        max-width: 450px;
    }
    
    .hero-single {
        min-height: 55vh;
        padding: 4rem 0;
    }
    
    .hero-single h1 {
        font-size: 3rem;
    }
    
    .hero-single p {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #690B22 0%, #8B1538 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 2rem;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu.active .mobile-menu-close {
        display: block;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.3s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }
    
    .nav-menu a {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }
    
    .nav-buttons {
        display: none;
    }
    
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        color: #690B22;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    .hero-single {
        min-height: 45vh;
        padding: 2.5rem 0;
    }
    
    .hero-single h1 {
        font-size: 2.5rem;
        color: #690B22;
    }
    
    .hero-single p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-content {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        color: #690B22;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .feature-card,
    .process-item,
    .security-item {
        padding: 1.5rem;
    }
}

/* 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 */
.btn:focus,
a:focus {
    outline: 2px solid var(--soft-coral);
    outline-offset: 2px;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--soft-coral);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Additional styles for new pages */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.last-updated {
    background: var(--pale-blush-hover);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--black);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.content-text {
    text-align: justify;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stats-section {
    margin: 3rem 0;
    text-align: center;
}

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

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid var(--soft-coral);
}

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

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

/* Support page styles */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 4px solid var(--brunswick-green);
}

.support-card h2 {
    color: var(--deep-wine-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-features ul {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
}

.support-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.support-features li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 0.5rem;
}

.contact-info {
    text-align: left;
    margin: 1rem 0;
}

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

.support-topics {
    margin: 3rem 0;
}

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

.topic-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid var(--soft-coral);
}

.topic-item h3 {
    color: var(--deep-wine-red);
    margin-bottom: 1rem;
}

.topic-item ul {
    list-style: none;
}

.topic-item li {
    padding: 0.3rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.topic-item li:before {
    content: "•";
    color: var(--deep-wine-red);
    font-weight: bold;
    margin-right: 0.5rem;
}

.response-times {
    margin: 3rem 0;
}

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

.time-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 4px solid var(--brunswick-green);
}

.time-item h3 {
    color: var(--deep-wine-red);
    margin-bottom: 0.5rem;
}

.feedback-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 3rem 0;
    border-left: 4px solid var(--soft-coral);
}

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

.feedback-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Privacy Policy and Terms specific styles */
.privacy-content,
.terms-content,
.disclaimer-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.privacy-content ul,
.terms-content ul,
.disclaimer-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-content li,
.terms-content li,
.disclaimer-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.privacy-content a,
.terms-content a,
.disclaimer-content a {
    color: var(--deep-wine-red);
    text-decoration: none;
}

.privacy-content a:hover,
.terms-content a:hover,
.disclaimer-content a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-wrapper,
    .privacy-content,
    .terms-content,
    .disclaimer-content {
        padding: 1.5rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .times-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper,
    .privacy-content,
    .terms-content,
    .disclaimer-content {
        padding: 1rem;
    }
}

/* Registration and Login Sections */
.register-section,
.login-section {
    padding: 4rem 0;
    background: white;
}

.register-section .container,
.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.register-content,
.login-content {
    max-width: 600px;
}

.register-content h2,
.login-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.register-content h3,
.login-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem 0;
    color: #667eea;
}

.register-content p,
.login-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Steps Container */
.steps-container {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

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

.step-icon {
    width: 48px;
    height: 48px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-icon svg {
    color: white;
    width: 24px;
    height: 24px;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.step-content p {
    font-size: 1rem;
    margin: 0;
    color: #333;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #333;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Areas */
.register-cta,
.login-cta {
    margin-top: 2rem;
    text-align: center;
}

.register-note,
.login-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: #333;
}

.register-note a,
.login-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

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

/* Image Visuals */
.register-visual {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.register-visual img {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.register-visual img:hover {
    transform: translateY(-5px);
}

.login-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-visual img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.login-visual img:hover {
    transform: translateY(-5px);
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .register-visual,
    .login-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .register-section,
    .login-section {
        padding: 2rem 0;
    }
    
    .register-content h2,
    .login-content h2 {
        font-size: 2rem;
    }
    
    .register-content h3,
    .login-content h3 {
        font-size: 1.5rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }
    
    .step-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .register-visual img {
        width: 150px;
        height: 225px;
    }
    
    .login-visual img {
        width: 250px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .register-content h2,
    .login-content h2 {
        font-size: 1.8rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin: 0 auto 1rem auto;
    }
    
    .register-visual {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .register-visual img {
        width: 120px;
        height: 180px;
    }
    
    .login-visual img {
        width: 200px;
        height: 300px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .content-wrapper,
    .privacy-content,
    .terms-content,
    .disclaimer-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .register-visual,
    .login-visual {
        display: none;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #690B22 0%, #8B1538 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.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: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

/* Footer Buttons */
.footer-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-buttons .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
}

.footer-buttons .btn-primary:hover {
    background: linear-gradient(45deg, #ff5252, #d63031);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.footer-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.footer-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

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

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .footer-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-buttons .btn {
        width: 100%;
        padding: 14px 20px;
    }
}
