/* Career Consultant Page Specific Styles */

.career-consultant-page {
    background: #0a0a0a;
    min-height: 100vh;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #00d4aa;
    font-weight: 600;
}

/* Hero Section */
.career-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: floatAround 12s ease-in-out infinite;
    color: #00d4aa;
    pointer-events: none;
}

.floating-element:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 25%; right: 12%; animation-delay: 1.5s; }
.floating-element:nth-child(3) { top: 45%; left: 15%; animation-delay: 3s; }
.floating-element:nth-child(4) { bottom: 35%; right: 18%; animation-delay: 4.5s; }
.floating-element:nth-child(5) { top: 35%; left: 45%; animation-delay: 6s; }

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.1);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: #00d4aa;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(0, 212, 170, 0.2);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Expertise Areas Section */
.expertise-areas {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.expertise-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.skills-list {
    list-style: none;
    padding: 0;
}

.skills-list li {
    color: #888;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.skills-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #0a0a0a;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Career Paths Section */
.career-paths {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.path-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.path-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

.path-card h3 {
    color: #00d4aa;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.path-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.path-step {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.path-step:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: #00d4aa;
}

.path-arrow {
    text-align: center;
    color: #00d4aa;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Consultation Section */
.consultation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.consultation-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Checkbox Styles */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #d0d0d0;
    line-height: 1.5;
    position: relative;
    width: 100%;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid #00d4aa;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label:hover .checkmark {
    border-color: #00b894;
    background: rgba(0, 212, 170, 0.15);
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.3);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #00d4aa;
    border-color: #00d4aa;
    box-shadow: 0 0 12px rgba(0, 212, 170, 0.5);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0a0a;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-text {
    color: #d0d0d0;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
    word-wrap: break-word;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #0a0a0a;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    margin-top: 2rem;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-message p {
    color: #ccc;
    margin-bottom: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 170, 0.05);
}

.faq-icon {
    color: #00d4aa;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .consultation-form {
        padding: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .paths-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
    
    .floating-element {
        font-size: 2rem;
        opacity: 0.15;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: start;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

.pricing-card-featured {
    border-color: rgba(0, 212, 170, 0.5);
    background: rgba(0, 212, 170, 0.07);
    transform: scale(1.03);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    display: inline-block;
    background: rgba(0, 212, 170, 0.15);
    color: #00d4aa;
    border: 1px solid rgba(0, 212, 170, 0.4);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.popular-badge {
    background: rgba(0, 212, 170, 0.3);
    border-color: #00d4aa;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-period {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-card h3 {
    color: #00d4aa;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    color: #ccc;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li.disabled {
    color: #555;
    text-decoration: line-through;
}

.pricing-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #0a0a0a;
}

.pricing-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
    transform: translateY(-2px);
}

.pricing-btn-outline {
    background: transparent;
    color: #00d4aa;
    border: 2px solid rgba(0, 212, 170, 0.5);
}

.pricing-btn-outline:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: #00d4aa;
}

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-top: 2rem;
}

/* Form Error Message */
.form-error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
}

/* ─── Consultation Modal ─────────────────────────────────────────────────── */

.consult-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consult-modal-overlay.consult-modal-visible {
    opacity: 1;
}

.consult-modal-overlay.consult-modal-closing {
    opacity: 0;
}

.consult-modal {
    background: #1a1a1a;
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.consult-modal-overlay.consult-modal-visible .consult-modal {
    transform: translateY(0);
}

.consult-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.consult-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.consult-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.consult-modal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.consult-modal-header h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.consult-modal-header p {
    color: #888;
    font-size: 0.9rem;
}

.consult-success-header h2 {
    color: #00d4aa;
}

.consult-success-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.consult-order-details {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.consult-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.consult-order-row:last-child {
    border-bottom: none;
}

.consult-order-row span:first-child {
    color: #888;
}

.consult-order-row span:last-child {
    color: #fff;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.consult-order-divider {
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    margin: 0.5rem 0;
}

.consult-order-total {
    padding-top: 0.75rem;
}

.consult-order-total span:first-child {
    color: #fff;
    font-weight: 600;
}

.consult-amount {
    color: #00d4aa !important;
    font-size: 1.2rem;
    font-weight: 700 !important;
}

.consult-modal-note {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: #888;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.consult-modal-actions {
    display: flex;
    gap: 0.75rem;
}

.consult-btn-primary,
.consult-btn-secondary {
    flex: 1;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.consult-btn-primary {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #0a0a0a;
}

.consult-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    transform: translateY(-1px);
}

.consult-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.consult-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.consult-btn-arrow {
    font-size: 1.1rem;
}

/* Loading modal */
.consult-loading-modal {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 300px;
}

.consult-loading-modal p {
    color: #ccc;
    margin-top: 1.25rem;
    font-size: 0.95rem;
}

.consult-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 212, 170, 0.2);
    border-top-color: #00d4aa;
    border-radius: 50%;
    animation: consultSpin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes consultSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
    .consult-modal {
        padding: 1.5rem;
    }

    .consult-modal-actions {
        flex-direction: column;
    }
}
