* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #2e6b7d;
    --primary-light: #4c89af;
    --primary-lighter: rgba(11, 57, 79, 0.982);
    --primary-dark: #1b545e;
    --secondary: #35c2ff;
    --accent: #8bc34a;
    --light: #f8f9fa;
    --dark: #333333;
    --text: #444444;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e9 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo a {
    color: white;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: var(--dark);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    display: block;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--light);
    border-left: 3px solid var(--primary);
    padding-left: 2rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}



.btn-login, .btn-signup {
    padding: 0.6rem 1.8rem;
    border: 2px solid #2d5e76;
    background: #efe7e700;
    color: #fff;;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-signup {
    background: #050c2014;;
    color: #fff;
}

.btn-login:hover, .btn-signup:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.welcome-user {
    color: white;
    margin-right: 1rem;
    font-weight: 600;
}

.btn-logout {
    padding: 0.6rem 1.5rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-logout:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 10%;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 112px;
    left: 0;
    width: 100%;
    background: #a4c6ce;
    z-index: 999;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    height: 80vh;
    overflow-y: scroll;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0 2rem;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    color: #092a48;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-dropdown-menu {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.mobile-dropdown-menu a {
    color: #192341;
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
}

.mobile-dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
    width: 100%;
}

/* Banner Section */
.banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/images/indexBanner.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
    width: 100%;
}

.banner-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: var(--text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    width: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.card-text {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.see-more {
    text-align: center;
    margin-top: 3rem;
    width: 100%;
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-see-more:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 1% auto;
    padding: 2.5rem;
    border-radius: 15px;
    width: 90%;
    height: 90vh;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s ease;
    overflow: scroll;
}

.modal-content::-webkit-scrollbar {
   display: none;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 0rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}

.close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Community Connect Button */
.community-connect {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.connect-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
    animation: bounce 2s infinite;
    transition: var(--transition);
    font-weight: 600;
}

.connect-btn:hover {
    background: #e55a2b;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255,107,53,0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 4rem 0 1rem;
    width: 100%;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #e8f5e8;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-section p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

/* Service Pages Styles */
.service-hero {
    position: relative;
    margin-bottom: 4rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
}

.service-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 3rem;
    border-radius: 0 0 15px 15px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    width: 100%;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
    width: 100%;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.program-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    width: 100%;
}

.contact-info {
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
}

.contact-details {
    margin-top: 2rem;
}

.contact-form {
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
}

.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    min-height: 150px;
    transition: var(--transition);
}

.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* About Page Styles */
.about-content {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.about-text h2 {
    color: var(--primary);
    margin: 2.5rem 0 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--secondary);
    border-radius: 2px;
}

.team-section {
    margin-top: 4rem;
    width: 100%;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    width: 100%;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--accent);
}

.team-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--text);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        margin: 5% auto;
    }
    
    .connect-btn span {
        display: none;
    }
    
    .connect-btn {
        padding: 1rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .btn-see-more {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-logo a {
        font-size: 1.8rem;
    }
    
    .banner {
        height: 70vh;
        padding: 0 1rem;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 2rem 0.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cards-container {
        gap: 1.5rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .program-card {
        padding: 1rem;
    }
    
    .program-card h3 {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .contact-info, .contact-form {
        padding: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-card img {
        width: 120px;
        height: 120px;
    }
    
    .footer-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .mobile-nav-menu {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
}

/* SweetAlert Fix */
.swal2-container {
    z-index: 3000 !important;
}

.swal2-popup {
    z-index: 3001 !important;
}

.swal2-backdrop {
    z-index: 2999 !important;
}

/* Contact Form Checkbox Styles */
.consent-group {
    margin: 2rem 0 1rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.checkbox-container:hover {
    background: #f0f4f0;
    border-color: var(--primary-light);
}

.checkbox-container input[type="checkbox"] {
    margin-top: 3px;
    min-width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.consent-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text);
    cursor: pointer;
    margin: 0;
}

.terms-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.terms-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive adjustments for checkbox */
@media (max-width: 768px) {
    .checkbox-container {
        padding: 0.8rem;
    }
    
    .consent-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .checkbox-container {
        padding: 0.7rem;
        gap: 10px;
    }
    
    .consent-label {
        font-size: 0.8rem;
    }
}

/* Policy Pages Styles */
.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.last-updated {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.policy-content {
    line-height: 1.8;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-section h3 {
    color: var(--primary);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.policy-section p {
    margin-bottom: 1rem;
    color: var(--text);
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-container {
        padding: 0 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .policy-container {
        padding: 0 0.5rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.4rem;
    }
    
    .policy-section ul {
        padding-left: 1.5rem;
    }
}


/* Mobile User Welcome Styles */
.welcome-user-mobile {
    color: #037a12;
    display: block;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin: 0.5rem 0;
}

.mobile-auth-section {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 1rem;
    padding-top: 1rem;
}