
    
    /* Team Quote Page Specific Styles */
/* Form Wrapper Improvements */
.st-quote-form-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
    background: #ffffff;
    padding: 40px;
}

.elementor-577 .elementor-element.elementor-element-5d921ce .elementor-button[type="submit"]{
    background-color: black !important;
}

/* Elementor Form Styling */
.st-quote-form-wrapper .elementor-form-fields-wrapper {
    gap: 20px;
}

.st-quote-form-wrapper .elementor-field-group {
    margin-bottom: 20px;
}

.st-quote-form-wrapper .elementor-field {
    padding: 15px !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 4px !important;
    background-color: #f8f9fa !important;
}

.st-quote-form-wrapper .elementor-field:focus {
    border-color: #212529 !important;
    box-shadow: 0 0 0 2px rgba(33, 37, 41, 0.1);
}

.st-quote-form-wrapper .elementor-button {
    background-color: #212529 !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    border-radius: 4px !important;
    border: 1px solid #212529 !important;
}

.st-quote-form-wrapper .elementor-button:hover {
    background-color: #ffffff !important;
    color: #212529 !important;
}

/* What to Expect Section */
/* Enhanced What to Expect Section */
.st-expect-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0;
}

.st-section-title {
    font-size: 32px;
    font-weight: bold;
    color: #212529;
    margin-bottom: 40px;
}

.st-expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.st-expect-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.st-expect-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #dee2e6;
}

.st-expect-icon {
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    background: #212529;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.st-expect-item:hover .st-expect-icon {
    transform: scale(1.1);
}

.st-expect-icon i {
    font-size: 20px;
    color: #ffffff;
}

.st-expect-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #212529;
    margin-bottom: 10px;
}

.st-expect-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.5;
    margin: 0;
}

/* Hover effect for text */
.st-expect-item:hover h3 {
    color: #000000;
}

/* Background accent on hover */
.st-expect-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #212529;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.st-expect-item:hover::after {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .st-expect-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .st-expect-section {
        padding: 0 20px;
    }

    .st-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}
