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

:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --gray-900: #202124;
    --gray-700: #5f6368;
    --gray-600: #80868b;
    --gray-500: #9aa0a6;
    --gray-200: #e8eaed;
    --gray-50: #f8f9fa;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    height: 80px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 12px;
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: var(--gray-700);
    transition: all 0.2s;
    border-radius: 3px;
}

/* Hero */
.hero {
    background: var(--primary);
    padding: 120px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.safelock-hero {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.safelock-hero::before {
    content: none;
}

.safelock-hero::after {
    content: none;
}

.safelock-hero .container {
    position: relative;
    z-index: 1;
}

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

.safelock-hero .hero-actions {
    justify-content: center;
}

.safelock-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: 60px;
    align-items: center;
}

.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.carousel-item.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

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

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 180px;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: var(--white);
    color: var(--primary);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--primary-dark);
    color: var(--white);
    border: 2px solid var(--white);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--primary);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 48px;
    flex-wrap: nowrap;
}

.stat {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    min-width: 140px;
    flex: 0 0 auto;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

h2 {
    text-align: center;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 48px;
}

.mission-summary {
    background: var(--white);
}

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

.mission-content p {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 40px;
    line-height: 1.8;
}

.mission-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.what-we-do {
    background: var(--gray-50);
}

.activities-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.activity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    min-width: 160px;
    border: 2px solid transparent;
}

.activity-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.activity-item span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
}

.quick-actions {
    background: var(--white);
    padding: 80px 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.action-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    border: 2px solid var(--primary);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    background: var(--primary);
}

.action-card:hover h4,
.action-card:hover p {
    color: var(--white);
}

.action-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.action-card p {
    color: var(--gray-900);
    line-height: 1.6;
    transition: color 0.2s;
}

/* Footer */
footer {
    background: var(--gray-900);
    color: var(--gray-500);
    padding: 80px 0 32px;
}

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

.footer-section h3 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: var(--gray-500);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 16px;
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-500);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.contact-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 16px;
}

a.contact-submit {
    color: var(--white);
}

.contact-submit:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-phone {
        order: -1;
    }

    .phone-mockup {
        width: 260px;
        height: 530px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        gap: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 16px;
        background: var(--gray-50);
        border-radius: 8px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--primary);
        color: var(--white);
    }

    .logo-image {
        height: 50px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }

    .hero-stats {
        gap: 12px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .stat {
        min-width: 100px;
        padding: 12px;
        flex-shrink: 0;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .actions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

    .impact-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .stat {
        width: 100%;
        max-width: 200px;
    }
}

/* SafeLock Specific Styles */
.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.impact-stat {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.impact-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.impact-stat .stat-label {
    font-size: 0.875rem;
    color: var(--gray-900);
    font-weight: 600;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    border: 2px solid transparent;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.feature-image-container {
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-900);
    line-height: 1.6;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.award-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    border: 2px solid transparent;
    text-align: center;
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.award-logo {
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.award-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.award-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.award-description {
    font-size: 0.875rem;
    color: var(--gray-900);
    line-height: 1.5;
}

/* Get Involved Page Styles */
.impact-examples-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.impact-item-horizontal {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.2s;
}

.impact-item-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.impact-item-horizontal h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.impact-item-horizontal p {
    font-size: 0.875rem;
    color: var(--gray-900);
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
}

.faq-item-horizontal {
    background: var(--white);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.2s;
}

.faq-item-horizontal:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-item-horizontal h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.faq-item-horizontal p {
    font-size: 1rem;
    color: var(--gray-900);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .impact-examples-horizontal {
        grid-template-columns: 1fr;
    }
}

/* Additional Page Styles */
.page-hero {
    background: var(--primary);
    padding: 120px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.page-hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.about-mission-section,
.involvement-options-section,
.what-we-do-section {
    background: var(--white);
    padding: 80px 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.activity-card {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.activity-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.activity-card p {
    color: var(--gray-900);
    line-height: 1.6;
}

.team-section,
.impact-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.team-member {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.member-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.team-member p {
    color: var(--gray-900);
    line-height: 1.6;
    font-size: 0.875rem;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.involvement-card {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.involvement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.involvement-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.involvement-card p {
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: 16px;
}

.involvement-benefits {
    list-style: none;
    margin: 20px 0;
}

.involvement-benefits li {
    color: var(--gray-900);
    padding: 8px 0;
    font-size: 0.875rem;
}

.involvement-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    margin-top: 16px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.involvement-btn:hover {
    background: var(--primary-dark);
}

.involvement-btn:disabled {
    background: var(--gray-500);
    cursor: not-allowed;
}

.coming-soon {
    background: var(--gray-200);
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
}

.coming-soon h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.coming-soon p {
    color: var(--gray-700);
    font-size: 0.875rem;
}

.impact-you-can-make,
.volunteer-opportunities,
.involvement-faq {
    background: var(--white);
    padding: 80px 0;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.opportunity-card {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.opportunity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.opportunity-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.opportunity-card p {
    color: var(--gray-900);
    line-height: 1.6;
    margin-bottom: 12px;
}

.opportunity-commitment {
    color: var(--gray-900);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.opportunity-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.opportunity-btn:hover {
    background: var(--primary-dark);
}
