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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #334155;
    z-index: 1000;
}

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

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    display: inline;
}

.brand-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #60a5fa;
}

.nav-tagline {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 400;
    margin-left: 0.5rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #60a5fa;
}

/* Support Button Styling */
.support-button {
    background-color: #3b82f6 !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3) !important;
}

.support-button:hover {
    background-color: #2563eb !important;
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
}

.support-button.active {
    background-color: #2563eb !important;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation */
.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    background: url('./images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin-top: 4rem;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* About Section */
.about {
    padding: 3rem 0 3rem;
    background-color: #1e293b;
}

.about-content > *:last-child {
    margin-bottom: 0 !important;
}

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

.about-intro {
    font-size: 1.375rem;
    color: #f1f5f9;
    margin-bottom: 2rem;
    margin-top: -2rem;
    font-weight: 500;
    line-height: 1.7;
}

.about-text {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 3rem 0 3rem;
    background-color: #0f172a;
}

.services > *:last-child {
    margin-bottom: 0 !important;
}

.service-grid > *:last-child {
    margin-bottom: 0 !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    color: #f1f5f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid #334155;
    border-radius: 8px;
    background-color: #0f172a;
    transition: all 0.3s ease;
}

.service-card:hover,
.service-card.animate-in {
    border-color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
}

/* Why Choose Section */
.why-choose {
    padding: 3rem 0 3rem;
    background-color: #1e293b;
}

.why-choose > *:last-child {
    margin-bottom: 0 !important;
}

.why-choose-grid > *:last-child {
    margin-bottom: 0 !important;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-card {
    padding: 2rem;
    border: 1px solid #334155;
    border-radius: 8px;
    background-color: #0f172a;
    transition: all 0.3s ease;
}

.why-card:hover,
.why-card.animate-in {
    border-color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.why-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

.why-visual {
    display: flex;
    justify-content: center;
}

.commitment-box {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.commitment-box h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.commitment-box p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 1rem 0 6rem;
    background-color: #1e293b;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.contact-info p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    space-y: 1rem;
}

.contact-item {
    padding: 1rem 0;
    color: #e2e8f0;
    border-bottom: 1px solid #334155;
    line-height: 1.6;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:first-child {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
}

.contact-item strong {
    color: #60a5fa;
    margin-right: 1rem;
}

.contact-item a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #93c5fd;
}

/* Contact Form */
.contact-form {
    background-color: #0f172a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
}

/* reCAPTCHA v3 is invisible - no styling needed */

/* Support Page Styling */
.support-page {
    padding: 4rem 0 6rem;
    background-color: #0f172a;
    min-height: 100vh;
    margin-top: 4rem;
    display: flex;
    align-items: center;
}

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

.support-title {
    font-size: 3rem;
    font-weight: 300;
    color: #f1f5f9;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.support-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-weight: 400;
}

.support-form-container {
    background-color: #1e293b;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #334155;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.support-form {
    margin-bottom: 1rem;
}

.support-label {
    display: block;
    font-size: 1.125rem;
    color: #f1f5f9;
    margin-bottom: 2rem !important;
    font-weight: 500;
    text-align: left;
}

.form-group .support-label {
    margin-bottom: 2rem !important;
}

.support-code-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    border: 2px solid #475569;
    border-radius: 8px;
    background-color: #0f172a;
    color: #e2e8f0;
    font-family: 'Inter', monospace;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.support-code-input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.support-code-input::placeholder {
    color: #64748b;
    text-transform: none;
    letter-spacing: normal;
}

.support-submit-button {
    width: 100%;
    background-color: #3b82f6;
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.support-submit-button:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.support-submit-button:disabled {
    background-color: #475569;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.support-help {
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.support-help-text {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

.support-phone {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-phone:hover {
    color: #93c5fd;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #f1f5f9;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #475569;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #1e293b;
    color: #e2e8f0;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    background-color: #3b82f6;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.submit-button:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Footer */
.footer {
    background-color: #020617;
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #334155;
}

.footer p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.footer-separator {
    color: #475569;
    margin: 0 0.75rem;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 1rem;
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    
    /* Mobile Menu Styling - Clean, professional design */
    .nav-menu li {
        width: 100%;
        margin: 0.75rem 0;
        display: flex;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 1.5rem !important;
        font-weight: 500 !important;
        padding: 1rem 2rem !important;
        display: block;
        text-align: center;
        width: 75% !important;
        background-color: rgba(30, 41, 59, 0.6) !important;
        border-radius: 8px !important;
        border: 1px solid rgba(51, 65, 85, 0.3) !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(10px) !important;
        color: #e2e8f0 !important;
    }
    
    .nav-menu a:hover {
        background-color: rgba(30, 41, 59, 0.8) !important;
        border-color: rgba(96, 165, 250, 0.5) !important;
        transform: translateX(5px) !important;
        color: #93c5fd !important;
    }
    
    /* Support button styling - special treatment */
    .nav-menu .support-button {
        background-color: rgba(59, 130, 246, 0.8) !important;
        border-color: rgba(59, 130, 246, 0.5) !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        color: white !important;
        width: 75% !important;
    }
    
    .nav-menu li:has(.support-button) {
        margin-top: 1.5rem !important;
    }
    
    .nav-menu .support-button:hover {
        background-color: rgba(37, 99, 235, 0.9) !important;
        border-color: rgba(37, 99, 235, 0.7) !important;
        transform: translateX(5px) scale(1.02) !important;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
        color: white !important;
    }
    
    .hero {
        padding: 3rem 0 4rem;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .support-title {
        font-size: 2.5rem;
    }
    
    .support-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        gap: 0.75rem;
    }
    
    .nav-menu a {
        font-size: 0.875rem;
    }
    
    .hero {
        padding: 2.5rem 0 3rem;
        min-height: 60vh;
        background-position: center top;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card,
    .why-card {
        padding: 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .commitment-box {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .support-title {
        font-size: 2rem;
    }
    
    .support-form-container {
        padding: 1.5rem;
    }
}

/* Privacy Policy Page Styling */
.privacy-page {
    padding: 3rem 0 6rem;
    background-color: #0f172a;
    min-height: 100vh;
    margin-top: 4rem;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #f1f5f9;
    text-align: center;
    margin-bottom: 1rem;
}

.privacy-effective {
    font-size: 1rem;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 2.5rem;
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 1rem;
    border-bottom: 2px solid #334155;
    padding-bottom: 0.5rem;
}

.privacy-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list li {
    color: #cbd5e1;
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.privacy-list li:last-child {
    border-bottom: none;
}

.privacy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
}

.privacy-list strong {
    color: #f1f5f9;
}

.sms-details {
    margin-top: 1.5rem;
    background-color: #0f172a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #475569;
}

.sms-item {
    color: #cbd5e1;
    padding: 0.5rem 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.sms-item:last-child {
    border-bottom: none;
}

.sms-item strong {
    color: #f1f5f9;
}

.privacy-section a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.contact-details {
    background-color: #0f172a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #475569;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 3rem 0 4rem;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.25rem;
    }
    
    .sms-details,
    .contact-details {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 1.75rem;
    }
    
    .privacy-section {
        padding: 1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.125rem;
    }
}

/* Terms & Conditions Page Styling */
.terms-page {
    padding: 3rem 0 6rem;
    background-color: #0f172a;
    min-height: 100vh;
    margin-top: 4rem;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #f1f5f9;
    text-align: center;
    margin-bottom: 1rem;
}

.terms-effective {
    font-size: 1rem;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.terms-intro {
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
    margin-bottom: 2.5rem;
    text-align: center;
}

.terms-intro p {
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    font-size: 1.125rem;
}

.terms-section {
    margin-bottom: 2.5rem;
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
}

.terms-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 1rem;
    border-bottom: 2px solid #334155;
    padding-bottom: 0.5rem;
}

.terms-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    color: #cbd5e1;
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
}

.terms-list strong {
    color: #f1f5f9;
}

.sms-program-info {
    margin-bottom: 1.5rem;
    background-color: #0f172a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #475569;
}

.program-header p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.program-header p:last-child {
    margin-bottom: 0;
}

.program-header strong {
    color: #f1f5f9;
}

.terms-section a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-page {
        padding: 3rem 0 4rem;
    }
    
    .terms-title {
        font-size: 2rem;
    }
    
    .terms-intro,
    .terms-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.25rem;
    }
    
    .sms-program-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-title {
        font-size: 1.75rem;
    }
    
    .terms-intro,
    .terms-section {
        padding: 1rem;
    }
    
    .terms-section h2 {
        font-size: 1.125rem;
    }
    
    .terms-intro p {
        font-size: 1rem;
    }
}

/* SMS Opt-in Page Styling */
.sms-page {
    padding: 3rem 0 6rem;
    background-color: #0f172a;
    min-height: 100vh;
    margin-top: 4rem;
}

.sms-content {
    max-width: 800px;
    margin: 0 auto;
}

.sms-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #60a5fa;
    text-align: center;
    margin-bottom: 0.5rem;
}

.sms-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 3rem;
}

.sms-info-section {
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
    margin-bottom: 2.5rem;
}

.sms-info-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.sms-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sms-benefits-list li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.sms-benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.sms-form-container {
    background-color: #1e293b;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #334155;
    margin-bottom: 2.5rem;
}

.consent-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #0f172a;
    border-radius: 8px;
    border: 1px solid #475569;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.consent-checkbox {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: #60a5fa;
}

.consent-label {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.9rem;
}

.consent-label a {
    color: #60a5fa;
    text-decoration: none;
}

.consent-label a:hover {
    text-decoration: underline;
}

.sms-submit-button {
    width: 100%;
    background-color: #22c55e;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sms-submit-button:hover {
    background-color: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.sms-submit-button:disabled {
    background-color: #475569;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.sms-additional-info {
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
    margin-bottom: 2.5rem;
}

.sms-additional-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    background-color: #0f172a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #475569;
}

.info-item strong {
    color: #60a5fa;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.sms-help-section {
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
    text-align: center;
}

.sms-help-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.sms-help-section p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

.sms-help-section a {
    color: #60a5fa;
    text-decoration: none;
}

.sms-help-section a:hover {
    text-decoration: underline;
}

/* Security Page Styling */
.security-page {
    padding: 3rem 0 6rem;
    background-color: #0f172a;
    min-height: 100vh;
    margin-top: 4rem;
}

.security-content {
    max-width: 800px;
    margin: 0 auto;
}

.security-header {
    text-align: center;
    margin-bottom: 3rem;
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.security-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.security-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
}

.security-alert {
    background-color: #7c2d12;
    border: 1px solid #dc2626;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.security-alert h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fecaca;
    margin-bottom: 1rem;
}

.security-alert p {
    color: #fed7d7;
    margin: 0;
    line-height: 1.6;
}

.security-form-container {
    background-color: #1e293b;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #334155;
    margin-bottom: 2.5rem;
}

.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #475569;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #0f172a;
    color: #f1f5f9;
}

.form-select:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.security-submit-button {
    width: 100%;
    background-color: #ef4444;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.security-submit-button:hover {
    background-color: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.security-submit-button:disabled {
    background-color: #475569;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.security-immediate-help {
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
    margin-bottom: 2.5rem;
}

.security-immediate-help h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.help-item {
    background-color: #0f172a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #475569;
}

.help-item.urgent {
    border-color: #ef4444;
    background-color: #7c2d12;
}

.help-item strong {
    color: #60a5fa;
    display: block;
    margin-bottom: 0.5rem;
}

.help-item.urgent strong {
    color: #fecaca;
}

.help-item p {
    color: #cbd5e1;
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
}

.help-item.urgent p {
    color: #fed7d7;
}

.help-item a {
    color: #60a5fa;
    text-decoration: none;
}

.help-item.urgent a {
    color: #fecaca;
    font-weight: 600;
}

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

.security-tips {
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
}

.security-tips h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    color: #cbd5e1;
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li:before {
    content: "🔒";
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.tips-list strong {
    color: #f1f5f9;
}

/* Notification styling for new pages */
.notification {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
    backdrop-filter: blur(10px);
}

.notification.success {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #bbf7d0;
}

.notification.error {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #fecaca;
}

.notification.warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #fed7aa;
}

.notification.info {
    background-color: rgba(96, 165, 250, 0.1);
    border-color: #60a5fa;
    color: #dbeafe;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.notification-message {
    flex: 1;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.7;
    padding: 0;
}

.notification-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .sms-page,
    .security-page {
        padding: 3rem 0 4rem;
    }
    
    .sms-title,
    .security-title {
        font-size: 2rem;
    }
    
    .sms-info-section,
    .sms-form-container,
    .sms-additional-info,
    .sms-help-section,
    .security-form-container,
    .security-immediate-help,
    .security-tips {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .info-grid,
    .help-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item,
    .help-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .sms-title,
    .security-title {
        font-size: 1.75rem;
    }
    
    .sms-info-section,
    .sms-form-container,
    .sms-additional-info,
    .sms-help-section,
    .security-form-container,
    .security-immediate-help,
    .security-tips {
        padding: 1rem;
    }
    
    .checkbox-wrapper {
        gap: 0.5rem;
    }
    
    .consent-label {
        font-size: 0.85rem;
    }
}
