* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

header {
    background: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-btn:hover {
    color: #2eb398;
}

.nav-btn-primary {
    background: #2eb398;
    color: white;
    font-weight: 600;
}

.nav-btn-primary:hover {
    background: #259b82;
    color: white;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
    top: 100%;
    left: 0;
    border: 1px solid #e0e0e0;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #2eb398;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.hero {
    position: relative;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.75);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #b8b8b8;
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: #2eb398;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn:hover {
    background: #259b82;
    transform: translateY(-2px);
}

.courses-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.courses-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.courses-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    position: relative; /* Added to allow stretched link */
}

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

.course-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.course-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.course-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-duration {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.course-duration-bottom {
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.course-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
    font-weight: 600;
    line-height: 1.3;
}

.course-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.course-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #2eb398;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.course-btn:hover {
    background: #259b82;
    transform: translateY(-2px);
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.membership-section {
    background: white;
    color: #333;
    padding: 5rem 2rem;
    margin-top: 4rem;
    margin-bottom: 0;
}

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

.membership-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.bunker-title-highlight {
    color: #2eb398;
}

.bunker-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #555;
    text-align: center;
}

.membership-features {
    list-style: disc;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    padding-left: 2rem;
}

.membership-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.membership-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2eb398;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.membership-btn:hover {
    background: #259b82;
    transform: translateY(-2px);
}

.bunker-video {
    max-width: 560px;
    margin: 0 auto;
}

.bunker-video iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2eb398;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.faq-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p, .faq-item ul {
    color: #666;
    line-height: 1.8;
}

.faq-item ul {
    margin-left: 1.5rem;
}

.faq-item a {
    color: #2eb398;
    text-decoration: none;
}

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

footer {
    background: #1a1a2e;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 0;
}

.dashboard-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    color: #1a1a2e;
}

.add-course-btn {
    padding: 0.8rem 1.5rem;
    background: #2eb398;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}

.course-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.course-actions form {
    display: inline-flex;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    min-height: 38px;
    line-height: 1.2;
}

.edit-btn {
    background: #2eb398;
    color: white;
}

.delete-btn {
    background: #dc3545;
    color: white;
}

.manage-btn {
    background: #17a2b8;
    color: white;
}

.manage-btn:hover {
    background: #138496;
}

.action-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.action-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.3);
}

/* Footer Styles - Professional Tall Design */
footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 3rem 2rem;
    margin-top: auto;
    border-top: 1px solid rgba(46, 179, 152, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #2eb398 50%, transparent 100%);
    opacity: 0.5;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.footer-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.footer-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.footer-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.footer-logo {
    max-height: 90px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.footer-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.footer-copyright {
    font-size: 0.75rem;
    color: #b8b8b8;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-transform: uppercase;
}

.footer-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.footer-links a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
}

/* Responsive */
@media (max-width: 1100px) {
    footer {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-center {
        gap: 2rem;
    }
    
    .footer-logo {
        max-height: 75px;
    }
}

@media (max-width: 900px) {
    footer {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-center {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-divider {
        width: 80px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-links a {
        padding: 0.5rem 0.75rem;
    }
    
    .footer-links a:not(:last-child)::after {
        display: none;
    }
    
    .footer-logo {
        max-height: 65px;
    }
}

/* Legal Section Styles */
.legal-section {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
}

.legal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 600;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 600;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #555;
    line-height: 1.8;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #2eb398;
    text-decoration: none;
}

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

.telegram-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.telegram-link:hover {
    background: #006699;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .legal-section {
        padding: 3rem 1rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-section h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.02);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: #2eb398;
}

/* Responsive styles for testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-section {
        padding: 3rem 1rem;
    }
}

/* Responsive styles for course grid */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .courses-section {
        padding: 3rem 1rem;
    }

    .course-image,
    .course-image-placeholder {
        height: 200px;
    }
}

/* ============================================
   HEADER RESPONSIVE - MOBILE MENU
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Dark theme mobile menu toggle */
[data-theme="dark"] .mobile-menu-toggle span {
    background-color: #e6edf3;
}

/* Responsive Header Styles */
@media (max-width: 900px) {
    header {
        padding: 0.75rem 1rem;
        position: relative;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        height: 40px !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-buttons {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        border-top: 1px solid #e0e0e0;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-buttons.active {
        display: flex;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }

    .nav-btn:hover {
        background: rgba(46, 179, 152, 0.1);
    }

    .nav-btn-primary {
        margin-top: 0.5rem;
    }

    /* Dropdown in mobile */
    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        display: none;
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem;
        text-align: center;
    }

    /* Theme toggle in mobile */
    .theme-toggle {
        align-self: center;
        margin-bottom: 0.5rem;
    }
}

/* Dark theme mobile nav */
[data-theme="dark"] .nav-buttons {
    background: var(--header-bg);
    border-top-color: var(--border-color);
}

[data-theme="dark"] .dropdown-menu {
    background: var(--card-bg-secondary);
}

[data-theme="dark"] .nav-btn:hover {
    background: var(--hover-bg);
}

/* ============================================
   FOOTER RESPONSIVE IMPROVEMENTS
   ============================================ */

@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        order: 2;
    }

    .footer-center {
        order: 1;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-links a {
        padding: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-links a:last-child {
        border-bottom: none;
    }

    .footer-links a:not(:last-child)::after {
        display: none;
    }

    .footer-logo {
        max-height: 45px;
    }

    .footer-copyright {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-height: 35px;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

/* ============================================
   HERO SECTION RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 1.25rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .bunker-video iframe {
        height: 200px;
    }
}

/* ============================================
   MEMBERSHIP SECTION RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .membership-section {
        padding: 3rem 1.5rem;
    }

    .membership-content h2 {
        font-size: 1.75rem;
    }

    .bunker-subtitle {
        font-size: 1rem;
    }

    .membership-features {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .membership-section {
        padding: 2.5rem 1rem;
    }

    .membership-content h2 {
        font-size: 1.5rem;
    }

    .membership-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   GENERAL RESPONSIVE UTILITIES
   ============================================ */

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    main {
        width: 100%;
    }
}

/* Touch-friendly tap targets on mobile */
@media (max-width: 768px) {
    .nav-btn,
    .footer-links a,
    button,
    input[type="submit"] {
        min-height: 44px;
        min-width: 44px;
    }
}
