.workshop-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #5e69ad;
}

.workshop-card i {
    font-size: 40px;
    color: #5e69ad;
    margin-bottom: 20px;
}

.workshop-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 0;
    text-transform: uppercase;
}

.pricing-box {
    background: linear-gradient(135deg, #5e69ad 0%, #4f46e5 100%);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
}

.pricing-box h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
}

.pricing-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.info-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border-left: 5px solid #5e69ad;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #5e69ad;
}

.info-card ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.info-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #5e69ad;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #5e69ad;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
}

.contact-queries {
    background: linear-gradient(rgba(30, 27, 75, 0.95), rgba(30, 27, 75, 0.95)), url('../images/backgrounds/cta-one-bg-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.contact-queries::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(109, 40, 217, 0.2);
    border-radius: 50%;
}

.contact-queries::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(79, 70, 229, 0.2);
    border-radius: 50%;
}

.contact-queries h2 {
    color: #fff;
    margin-bottom: 40px;
}

.contact-card-elegant {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    height: 100%;
}

.contact-card-elegant:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-15px);
    border-color: #5e69ad;
}

.contact-card-elegant .icon-box {
    width: 80px;
    height: 80px;
    background: #5e69ad;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
}

.contact-card-elegant h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-card-elegant p,
.contact-card-elegant a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card-elegant a:hover {
    color: #fff;
}

.cta-footer-btn {
    margin-top: 60px;
}
