    .opportunities-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .page-title {
        color: #1EBBD7;
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.5em;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .opportunities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .opportunity-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .opportunity-card:hover {
        transform: translateY(-5px);
    }

    .opportunity-image {
        height: 200px;
        position: relative;
        overflow: hidden;
    }

    .opportunity-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .opportunity-content {
        padding: 25px;
    }

    .opportunity-title {
        color: #1a1a1a;
        margin-bottom: 15px;
        font-size: 1.3em;
    }

    .opportunity-description {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .opportunity-btn {
        display: inline-block;
        background: #1EBBD7;
        color: white;
        padding: 12px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s ease;
    }

    .opportunity-btn:hover {
        background: #1697ad;
    }

    @media (max-width: 768px) {
        .opportunities-grid {
            grid-template-columns: 1fr;
        }

        .page-title {
            font-size: 2em;
        }
    }