/* Experience Cards */
.experience-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-card__image {
    height: 250px;
    overflow: hidden;
}

.experience-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover .experience-card__image img {
    transform: scale(1.1);
}

.experience-card__content {
    padding: 25px;
}

.experience-card__title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.experience-card__description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.experience-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-card__features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #444;
}

.experience-card__features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.cta-box__title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box__text {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .experience-card__image {
        height: 200px;
    }
    
    .experience-card__title {
        font-size: 20px;
    }
    
    .cta-box__title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .experience-card__image {
        height: 180px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box__title {
        font-size: 24px;
    }
} 