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

html {
    scroll-behavior: smooth;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    padding: 1rem 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.text-red {
    color: #dc2626;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.nav a:hover {
    color: #dc2626;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, #dc2626, #f87171);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: #d1d5db;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #dc2626;
    color: #fff;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #dc2626;
    color: #dc2626;
    background: transparent;
}

.btn-outline:hover {
    background: #dc2626;
    color: #fff;
}

.btn-outline-white {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-white:hover {
    background: #fff;
    color: #dc2626;
}

.btn-admin {
    background: #dc2626;
    color: #fff;
    font-size: 0.9rem;
}

.btn-admin:hover {
    background: #b91c1c;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-title {
    font-weight: 600;
}

.feature-sub {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-label {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
}

.section-header p {
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card h3, .card h4 {
    margin-bottom: 0.5rem;
}

.card p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags span {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Services */
.services {
    background: linear-gradient(to bottom, #000, rgba(69, 10, 10, 0.2));
}

/* Portfolio */
.portfolio {
    background: #000;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.portfolio-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

/* Pro Bono */
.probono {
    background: linear-gradient(to bottom, #000, rgba(69, 10, 10, 0.3));
}

.probono-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    margin-bottom: 0.5rem;
}

.probono-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.probono-image {
    border-radius: 12px;
    overflow: hidden;
}

.probono-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.probono-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.probono-content p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.benefits {
    margin: 2rem 0;
}

.benefit {
    color: #d1d5db;
    padding: 0.5rem 0;
}

.eligibility-section {
    margin-top: 3rem;
}

.eligibility-section h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.eligibility-card {
    text-align: center;
}

.cta-banner {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-banner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* About */
.about {
    background: linear-gradient(to bottom, rgba(69, 10, 10, 0.2), #000);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-content p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.check-list {
    margin-top: 1.5rem;
}

.check-item {
    color: #d1d5db;
    padding: 0.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: #dc2626;
    font-weight: 700;
}

.stat-label {
    color: #9ca3af;
}

.values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-card h4 {
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Contact */
.contact {
    background: #000;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card h4 {
    margin-bottom: 0.5rem;
}

.info-card a {
    color: #9ca3af;
    text-decoration: none;
}

.info-card a:hover {
    color: #dc2626;
}

.info-card p {
    color: #9ca3af;
}

.info-highlight {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-highlight h4 {
    margin-bottom: 0.5rem;
}

.info-highlight ul {
    list-style: none;
}

.info-highlight li {
    padding: 0.25rem 0;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin: 0;
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-message.info {
    display: block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    padding: 0.25rem 0;
    color: #9ca3af;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-col a:hover {
    color: #dc2626;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #dc2626;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    flex: 1;
}

.footer-bottom-content p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #dc2626;
}

.support-login {
    display: flex;
    justify-content: flex-start;
}

.admin-login {
    display: flex;
    justify-content: flex-end;
}

.btn-support {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid #dc2626;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-support:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-admin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid #dc2626;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-admin:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .probono-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .support-login,
    .admin-login {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-content {
        text-align: center;
        width: 100%;
    }
}

@media (min-width: 769px) {
    .probono-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-row {
        flex-direction: row;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Pro Bono Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: #1a1a1a;
    border: 2px solid #dc2626;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    height: 90vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    background: rgba(220, 38, 38, 0.1);
}

.modal-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
}

.modal-body {
    flex: 1;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Privacy Policy Modal Specific Styles */
.modal-content.privacy-modal {
    max-width: 800px;
    height: auto;
    max-height: 90vh;
}

.privacy-content {
    padding: 2rem;
    overflow-y: auto;
    color: #d1d5db;
    line-height: 1.8;
}

.privacy-content::-webkit-scrollbar {
    width: 10px;
}

.privacy-content::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 5px;
}

.privacy-content::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 5px;
}

.privacy-content::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

.privacy-date {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.privacy-content h4 {
    color: #dc2626;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.privacy-content p {
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.privacy-content a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-content a:hover {
    color: #ef4444;
    text-decoration: underline;
}

.contact-box {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.policy-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    color: #9ca3af;
    font-size: 0.9rem;
}

.policy-footer p {
    margin-bottom: 0.5rem;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        height: 95vh;
        max-height: none;
    }
    
    .modal-content.privacy-modal {
        height: 95vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
    
    .privacy-content h4 {
        font-size: 1.2rem;
    }
    
    .privacy-content ul {
        padding-left: 1.5rem;
    }
}

/* Clickable Tag Styles */
.clickable-tag {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.clickable-tag:hover {
    background: rgba(220, 38, 38, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.clickable-tag::after {
    content: '?';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc2626;
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    opacity: 0.8;
}

/* HTML5 Info Modal Specific Styles */
.modal-content.info-modal {
    max-width: 900px;
    height: auto;
    max-height: 90vh;
}

.scrollable-content {
    overflow-y: auto;
    padding: 0;
}

.scrollable-content::-webkit-scrollbar {
    width: 10px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 5px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 5px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

.info-content {
    padding: 2rem;
    color: #d1d5db;
    line-height: 1.8;
}

.info-content h4 {
    color: #dc2626;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.info-content h4:first-child {
    margin-top: 0;
}

.info-content h5 {
    color: #ef4444;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-content p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

.info-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
    list-style-type: disc;
}

.info-content li {
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.info-content code {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #ef4444;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.info-content strong {
    color: #fff;
    font-weight: 600;
}

.cta-box {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.cta-box h5 {
    color: #dc2626;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    color: #d1d5db;
}

.cta-box .btn {
    margin: 0 auto;
}

/* Mobile responsiveness for info modal */
@media (max-width: 768px) {
    .modal-content.info-modal {
        height: 95vh;
    }
    
    .info-content {
        padding: 1.5rem;
    }
    
    .info-content h4 {
        font-size: 1.2rem;
    }
    
    .info-content h5 {
        font-size: 1rem;
    }
    
    .info-content ul {
        padding-left: 1.5rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .clickable-tag::after {
        width: 14px;
        height: 14px;
        font-size: 9px;
    }
}
