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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    padding: 20px;
    min-height: 100vh;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    background: linear-gradient(180deg, #1a237e 0%, #3f51b5 50%, #5c6bc0 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title {
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-range {
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.call-to-action {
    margin-top: auto;
}

.work-with-us {
    color: white;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    font-style: italic;
}

.highlight {
    font-weight: 600;
}

.button-container {
    position: relative;
    display: inline-block;
}

.apply-button {
    background-color: white;
    color: #1a237e;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background-color: #f8f9fa;
}

.apply-button:active {
    transform: translateY(0);
}

.cursor-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .card {
        padding: 25px 20px;
        min-height: 400px;
    }
    
    .title {
        font-size: 15px;
    }
    
    .work-with-us {
        font-size: 22px;
    }
    
    .apply-button {
        padding: 10px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .grid-container {
        padding: 10px;
        gap: 15px;
    }
    
    .card {
        padding: 20px 15px;
        min-height: 380px;
    }
    
    .title {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .date-range {
        font-size: 11px;
    }
    
    .work-with-us {
        font-size: 20px;
    }
    
    .apply-button {
        padding: 10px 22px;
        font-size: 14px;
    }
}