/* CSS Variables */
:root {
    --prg-pink: #e90f7b;
    --prg-teal: #7c9c9c;
    --prg-light-teal: #c9cfce;
    --prg-gray: #333432;
    --prg-light-gray: #9b9c9c;
    --prg-bg: #f7f6f6;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--prg-gray);
    line-height: 1.6;
    background-color: white;
}

/* Header Styles - Logo centered above, menu centered below, donate button on right */
.header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

/* Logo centered at top */
.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

.logo {
    height: 55px;
    width: auto;
}

/* Desktop Navigation centered below logo */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--prg-pink);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #c20e69;
    text-decoration: underline;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--prg-pink);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #c20e69;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: absolute;
    top: 15px;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--prg-gray);
    transition: all 0.3s ease;
}

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

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav.show {
    display: block;
}

.mobile-nav-item {
    margin-bottom: 15px;
}

.mobile-nav-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    text-align: left;
    color: var(--prg-pink);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-nav-toggle.active i {
    transform: rotate(180deg);
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: var(--prg-pink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-submenu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-submenu.show {
    display: block;
}

.mobile-submenu a {
    display: block;
    padding: 8px 0;
    color: var(--prg-pink);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f8f9fa;
}

.mobile-submenu a:hover {
    color: #c20e69;
}

/* Donate button positioned on the right */
.donate-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: var(--prg-pink);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.donate-btn:hover {
    background: #c20e69;
}

/* Mobile Header */
@media (max-width: 768px) {
    .header-container {
        position: static;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .donate-btn {
        position: static;
        transform: none;
        margin: 15px auto 0;
        display: block;
        text-align: center;
        width: fit-content;
    }

    .logo-container {
        margin-bottom: 10px;
    }

    .logo {
        height: 50px;
    }
}

@media (max-width: 600px) {
    .mobile-nav {
        padding: 15px;
    }
}

/* Main Content */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header-image {
    max-width: 100%;
    height: auto;
}

/* Separators */
.teal-separator,
.faq-separator {
    margin: 40px 0;
}

.separator-image {
    width: 100%;
    height: auto;
    max-height: 20px;
}

/* FAQ Content */
.faq-content {
    margin: 40px 0;
}

.faq-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin: 40px 0;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--prg-gray);
    line-height: 1.4;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

.prg-link {
    color: var(--prg-pink);
    text-decoration: none;
}

.prg-link:hover {
    text-decoration: underline;
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .faq-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: var(--prg-pink);
    color: white;
    padding: 60px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.address {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-link,
.contact-phone {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-phone {
    font-size: 20px;
    font-weight: 500;
}

.contact-link:hover,
.contact-phone:hover {
    text-decoration: underline;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-text {
    font-size: 14px;
    line-height: 1.6;
}

.legal-links {
    margin: 15px 0;
}

.legal-links a {
    color: white;
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 15px;
}

/* Newsletter Form */
.newsletter-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: var(--prg-gray);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-input {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.subscribe-btn {
    background: white;
    color: var(--prg-pink);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.subscribe-btn:hover {
    background: #f0f0f0;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-title {
        font-size: 24px;
    }

    .newsletter-title {
        font-size: 20px;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .main-content {
        padding: 20px 15px;
    }

    .footer {
        padding: 40px 0;
    }
}
