.typeform-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(26, 26, 46, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.typeform-container::before,
.typeform-container::after {
    display: none;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.05); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.1; }
}

.typeform-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #4a4a82;
    position: relative;
    display: inline-block;
}

.typeform-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a4a82, #8080ff);
    border-radius: 3px;
}

.typeform-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
    max-width: 500px;
    font-weight: 500;
}

.typeform-button {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    background: linear-gradient(135deg, #6a6ab2, #3a3a5e);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.typeform-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.typeform-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #7a7ac2, #4a4a6e);
}

.typeform-button:hover::before {
    transform: translateX(0);
}

.typeform-button:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .typeform-container {
        padding: 30px 20px;
    }
    
    .typeform-heading {
        font-size: 26px;
    }
    
    .typeform-heading::after {
        width: 50px;
        height: 2px;
    }
    
    .typeform-description {
        font-size: 16px;
    }
    
    .typeform-button {
        padding: 14px 28px;
        font-size: 16px;
        min-width: 180px;
    }
}
