/* 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: #1a1a1a; /* Darker black for better contrast on #FEC5F6 */
    background-color: #FEC5F6; /* Very light lavender pink background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #DB8DD0; /* Pastel pink-purple background */
    padding: 10px 0;
    font-size: 14px;
    color: #1a1a1a; /* Darker black for better contrast on light background */
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumb li {
    margin-right: 10px;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #1a1a1a; /* Darker black for better contrast on light background */
}

.breadcrumb a {
    color: #B33791; /* Deep magenta for links */
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: #1a1a1a; /* Darker black on hover for better contrast */
    text-decoration: underline;
}

/* Header */
.header {
    background-color: #FEC5F6; /* Very light lavender pink background */
    box-shadow: 0 2px 10px rgba(179, 55, 145, 0.2); /* Deep magenta shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #1a1a1a; /* Darker black for better contrast on light background */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #B33791; /* Deep magenta on hover */
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1a1a1a;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #DB8DD0;
    color: #B33791;
}

.mobile-menu-btn:focus {
    outline: 2px solid #B33791;
    outline-offset: 2px;
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FEC5F6;
        box-shadow: 0 5px 15px rgba(179, 55, 145, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid #DB8DD0;
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 600;
    }
    
    .main-nav a:hover {
        background-color: #DB8DD0;
        color: #B33791;
        padding-left: 10px;
    }
    
    .main-nav a.active {
        color: #B33791;
        background-color: #DB8DD0;
        padding-left: 10px;
    }
    
    .auth-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #B33791; /* Deep magenta background */
    color: #FFFFFF; /* White text on dark background */
    border-color: #B33791;
}

.btn-primary:hover {
    background-color: #C562AF; /* Medium pink-purple on hover */
    border-color: #C562AF;
    color: #1a1a1a; /* Black text on lighter background */
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #B33791; /* Deep magenta text */
    border-color: #B33791;
}

.btn-outline:hover {
    background-color: #B33791; /* Deep magenta background on hover */
    color: #FFFFFF; /* White text on dark background */
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #B33791 0%, #C562AF 100%); /* Deep magenta to medium pink-purple gradient */
    color: #FFFFFF; /* White text on dark background */
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a; /* Darker black for better contrast on light backgrounds */
}

section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a; /* Darker black for better contrast on light backgrounds */
}

/* About Section */
.about {
    background-color: #DB8DD0; /* Pastel pink-purple background */
    color: #1a1a1a; /* Darker black for better contrast on light background */
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

/* Features Section */
.features {
    background-color: #FEC5F6; /* Very light lavender pink background */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #C562AF; /* Medium pink-purple background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(179, 55, 145, 0.2); /* Deep magenta shadow */
    text-align: center;
    transition: transform 0.3s ease;
    color: #1a1a1a; /* Darker black for better contrast on light background */
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: #DB8DD0; /* Pastel pink-purple on hover */
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #B33791; /* Deep magenta for headings */
    margin-bottom: 15px;
}

/* Registration Steps Section */
.registration-steps {
    background-color: #DB8DD0; /* Pastel pink-purple background */
    color: #1a1a1a; /* Darker black for better contrast on light background */
}

.steps-content {
    max-width: 800px;
    margin: 0 auto;
}

.steps-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Advantages & Security Section */
.advantages-security {
    background-color: #FEC5F6; /* Very light lavender pink background */
}

.security-content {
    max-width: 900px;
    margin: 0 auto;
}

.security-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    background-color: #DB8DD0; /* Pastel pink-purple background */
    color: #1a1a1a; /* Darker black for better contrast on light background */
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #C562AF; /* Medium pink-purple background for FAQ items */
    border-radius: 8px;
    border-left: 4px solid #B33791; /* Deep magenta border */
    color: #1a1a1a; /* Darker black for better contrast on light background */
}

.faq-item h3 {
    color: #B33791; /* Deep magenta for headings */
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    line-height: 1.6;
    color: #1a1a1a; /* Darker black for better contrast on light background */
}

.faq-item a {
    color: #B33791; /* Deep magenta for links */
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    color: #1a1a1a; /* Darker black on hover for better contrast */
    text-decoration: underline;
}

/* Register Section */
.register-section {
    background-color: #F5F5F5; /* Light beige background like reference */
    padding: 80px 0;
}

.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.register-content h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.register-content h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin: 40px 0 30px 0;
    text-align: left;
}

.register-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #E8F5E8; /* Light teal background like reference */
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #D4E6D4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #B33791; /* Deep magenta background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-content h4 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.step-content strong {
    color: #B33791;
    font-weight: 700;
}

.register-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.register-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.register-image img:hover {
    transform: scale(1.05);
}

.register-note {
    margin-top: 20px;
    font-size: 1rem;
    color: #1a1a1a;
}

.register-note a {
    color: #B33791;
    text-decoration: none;
    font-weight: 600;
}

.register-note a:hover {
    text-decoration: underline;
}

/* Login Section */
.login-section {
    background-color: #FEC5F6; /* Very light lavender pink background */
    padding: 80px 0;
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.login-content h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: left;
}

.login-content h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin: 40px 0 30px 0;
    text-align: left;
}

.login-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    padding: 10px 0;
    color: #1a1a1a;
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #B33791;
    font-weight: bold;
    font-size: 1.2rem;
}

.login-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.login-image img:hover {
    transform: scale(1.05);
}

.login-note {
    margin-top: 20px;
    font-size: 1rem;
    color: #1a1a1a;
}

.login-note a {
    color: #B33791;
    text-decoration: none;
    font-weight: 600;
}

.login-note a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #FEC5F6; /* Very light lavender pink background */
    padding: 80px 0;
}

.testimonials-section h2 {
    color: #1a1a1a; /* Darker black for better contrast */
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #FFFFFF; /* White background for cards */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(179, 55, 145, 0.15); /* Deep magenta shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E8B5E8; /* Light pink border */
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(179, 55, 145, 0.25);
}

.testimonial-content {
    margin-bottom: 25px;
    overflow: hidden;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1a1a1a; /* Darker black for better contrast */
    font-style: italic;
    position: relative;
    padding-left: 30px;
    margin-left: 0;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2.5rem;
    color: #B33791; /* Deep magenta for quote mark */
    position: absolute;
    top: -5px;
    left: 0;
    font-family: 'Times New Roman', serif;
    opacity: 0.4;
    line-height: 1;
    font-weight: bold;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: #B33791; /* Deep magenta for author names */
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info span {
    color: #666; /* Gray for author titles */
    font-size: 0.9rem;
    font-weight: 500;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #B33791 0%, #C562AF 100%); /* Deep magenta to medium pink-purple gradient */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(179, 55, 145, 0.2);
}

.stat-item {
    text-align: center;
    color: #FFFFFF; /* White text on dark background */
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF; /* White text */
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: #FEC5F6; /* Very light lavender pink for labels */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #B33791 0%, #C562AF 100%); /* Deep magenta to medium pink-purple gradient */
    color: #FFFFFF; /* White text on dark background */
    text-align: center;
}

.cta h2 {
    color: #FFFFFF; /* White text on dark background */
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #B33791; /* Deep magenta background */
    color: #FFFFFF; /* White text on dark background */
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #FFFFFF; /* White text on dark background */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #FEC5F6; /* Very light lavender pink for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFFFFF; /* White on hover for better contrast */
}

.footer-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid #C562AF; /* Medium pink-purple border */
    padding-top: 20px;
    text-align: center;
    color: #FEC5F6; /* Very light lavender pink text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .register-content h2,
    .login-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .register-content h3,
    .login-content h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-icon {
        align-self: center;
    }
    
    .register-image {
        order: -1;
    }
    
    .register-image img {
        max-width: 250px;
    }
    
    .login-image img {
        max-width: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        padding-left: 25px;
    }
    
    .testimonial-content p::before {
        font-size: 2rem;
        top: -3px;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .register-section,
    .login-section {
        padding: 60px 0;
    }
    
    .register-content h2,
    .login-content h2 {
        font-size: 1.8rem;
    }
    
    .register-content h3,
    .login-content h3 {
        font-size: 1.3rem;
    }
    
    .step-item {
        padding: 20px;
        gap: 15px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    }
    
    .step-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .register-image img,
    .login-image img {
        max-width: 200px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
a:focus {
    outline: 2px solid #B33791; /* Deep magenta outline */
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background-color: #B33791; /* Deep magenta */
        border-color: #B33791;
        color: #FFFFFF;
    }
    
    .btn-outline {
        color: #B33791; /* Deep magenta */
        border-color: #B33791;
    }
    
    .btn-outline:hover {
        background-color: #B33791;
        color: #FFFFFF;
    }
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #B33791 0%, #C562AF 100%);
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.last-updated {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Content pages */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-wrapper h2 {
    color: #B33791;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.content-wrapper h3 {
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.content-wrapper p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
}

.content-wrapper a {
    color: #B33791;
    text-decoration: none;
    font-weight: 600;
}

.content-wrapper a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

/* About page specific */
.about-content {
    background-color: #FEC5F6;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(179, 55, 145, 0.2);
}

.team-section {
    background-color: #DB8DD0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-item {
    background: #C562AF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(179, 55, 145, 0.2);
    text-align: center;
    color: #1a1a1a;
}

.commitment-item h3 {
    color: #B33791;
    margin-bottom: 15px;
}

/* Support page specific */
.support-content {
    background-color: #FEC5F6;
}

.support-grid {
    display: grid;
    gap: 50px;
}

.support-section {
    margin-bottom: 50px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-method {
    background: #C562AF;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #DB8DD0;
    transition: border-color 0.3s ease;
    color: #1a1a1a;
}

.contact-method:hover {
    border-color: #B33791;
}

.contact-method h3 {
    color: #B33791;
    margin-bottom: 15px;
}

.faq-list {
    margin-top: 30px;
}

.faq-list .faq-item {
    background: #C562AF;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #B33791;
    color: #1a1a1a;
}

.faq-list .faq-item h3 {
    color: #B33791;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.help-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.help-topic {
    background: #C562AF;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #DB8DD0;
    color: #1a1a1a;
}

.help-topic h3 {
    color: #B33791;
    margin-bottom: 15px;
}

.help-topic ul {
    list-style: none;
    padding: 0;
}

.help-topic li {
    padding: 8px 0;
    border-bottom: 1px solid #DB8DD0;
    font-size: 0.95rem;
}

.help-topic li:last-child {
    border-bottom: none;
}

/* Active navigation link */
.main-nav a.active {
    color: #B33791;
    font-weight: 600;
}

/* Responsive adjustments for content pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.3rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .help-topics {
        grid-template-columns: 1fr;
    }
}
