.internships-container {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.internships-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.internship-block {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.internship-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.internship-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.internship-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.internship-header .company {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
}

.internship-info-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.info-item strong {
    color: #333;
    font-size: 0.9rem;
}

.info-item span {
    color: #666;
    font-size: 0.9rem;
}

.internship-content {
    padding: 2rem;
}

.internship-content h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.internship-content h4:first-child {
    margin-top: 0;
}

.internship-content h4 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.internship-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.internship-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.internship-content ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.internship-content ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    line-height: 1.2;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .internships-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
