/* how-work.css */

/*----how-work section----*/

/* =============================================
   MAIN WRAPPER
============================================= */
.qao-main-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    min-height: 100vh;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(141, 220, 250, 0.2),
        inset 0 1px 1px rgba(141, 220, 250, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(141, 220, 250, 0.3);
    background: rgba(0, 40, 90, 0.4);
}

/* Background Effects */
.qao-bg-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.qao-glass-grid {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(141, 220, 250, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 220, 250, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
}

/* Content Container */
.qao-content {
    position: relative;
    z-index: 10;
    padding: clamp(50px, 10vh, 80px) 0;
}

.qao-container {
    max-width: min(1200px, 95vw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

/* =============================================
   ANIMATIONS
============================================= */
.qao-fade-in-up {
    opacity: 0;
    transform: translateY(-80px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.qao-fade-in-up.qao-animated {
    opacity: 1;
    transform: translateY(0);
}

.qao-fade-in-down {
    opacity: 0;
    transform: translateY(-80px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.qao-fade-in-down.qao-animated {
    opacity: 1;
    transform: translateY(0);
}

.qao-scale-in {
    opacity: 0;
    transform: scale(0.7) translateY(-50px);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qao-scale-in.qao-animated {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* =============================================
   SECTION HEADER (SHARED)
============================================= */
.qao-section-header {
    text-align: center;
    margin-bottom: clamp(50px, 10vh, 80px);
}

.qao-badge {
    display: inline-block;
    padding: clamp(8px, 2vw, 12px) clamp(20px, 4vw, 30px);
     background: linear-gradient(135deg, 
        rgba(0, 5, 37, 0.4) 0%,
        rgba(1, 40, 145, 0.3) 50%,
        rgba(0, 5, 37, 0.4) 100%
    );
    border: 1px solid rgba(141, 220, 250, 0.3);
    border-radius: 50px;
    color: #8ddcfa;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(141, 220, 250, 0.3);
}

.qao-section-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, 
        #8ddcfa 0%,
        #ccf2fb 25%,
        #caf0fa 50%,
        #8ddcfa 75%,
        #ccf2fb 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: -2px;
    line-height: 1.2;
}

.qao-section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(204, 242, 251, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =============================================
   HOW IT WORKS - STEPS SECTION
============================================= */
.qao-steps-section {
    margin-bottom: clamp(80px, 15vh, 120px);
}

.qao-steps-wrapper {
    position: relative;
    margin-bottom: clamp(50px, 10vh, 80px);
}

.qao-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: clamp(30px, 6vw, 50px);
    position: relative;
    opacity: 0;
}

.qao-step-number {
    position: relative;
    min-width: clamp(50px, 10vw, 80px);
    height: clamp(50px, 10vw, 80px);
    margin-right: clamp(15px, 3vw, 30px);
    z-index: 10;
}

.qao-number-circle {
    width: clamp(50px, 10vw, 80px);
    height: clamp(50px, 10vw, 80px);
    border-radius: 50%;
    background: linear-gradient(135deg, #8ddcfa 0%, #caf0fa 100%);
    border: 3px solid rgba(141, 220, 250, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    color: #ffffff;
    box-shadow: 
        0 0 0 5px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(141, 220, 250, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qao-number-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: qaoShine 3s infinite;
}

@keyframes qaoShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.qao-step:hover .qao-number-circle {
    transform: scale(1.15) rotate(10deg);
    border-color: rgba(141, 220, 250, 0.8);
    box-shadow: 
        0 0 0 6px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(141, 220, 250, 0.8),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.qao-connecting-line {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #8ddcfa, #caf0fa);
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 0 10px rgba(141, 220, 250, 0.6);
    transition: height 0.6s ease;
}

@keyframes qaoStepAppear {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.qao-step.qao-step-animated {
    animation: qaoStepAppear 0.8s ease forwards;
}

.qao-step-content {
    flex: 1;
    max-width: 100%;
   background: linear-gradient(135deg, 
        rgba(0, 5, 37, 0.7) 0%,
        rgba(1, 40, 145, 0.6) 50%,
        rgba(0, 5, 37, 0.7) 100%
    );
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: clamp(25px, 4vw, 35px) clamp(30px, 5vw, 40px);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(141, 220, 250, 0.2);
}

.qao-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        #8ddcfa,
        #caf0fa,
        #8ddcfa,
        #caf0fa
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: qaoRotateBorder 4s linear infinite;
    background-size: 300% 300%;
}

@keyframes qaoRotateBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.qao-step:hover .qao-step-content::before {
    opacity: 1;
}

.qao-step:hover .qao-step-content {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(0, 5, 37, 0.95) 0%,
        rgba(1, 40, 145, 0.9) 50%,
        rgba(0, 5, 37, 0.85) 100%
    );
    box-shadow: 0 30px 80px rgba(141, 220, 250, 0.4);
    border-color: rgba(141, 220, 250, 0.5);
}

.qao-step-title {
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    word-wrap: break-word;
}

.qao-step-icon {
    font-size: clamp(1.8rem, 4vw, 2rem);
    filter: drop-shadow(0 0 10px rgba(141, 220, 250, 0.6));
    flex-shrink: 0;
}

.qao-step-description {
    font-size: clamp(0.7rem, 2vw, 1rem);
    color: rgba(204, 242, 251, 0.8);
    line-height: 1.8;
}

.qao-highlight {
    color: #8ddcfa;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(141, 220, 250, 0.5);
}

/* =============================================
   CONTACT FORM SECTION
============================================= */
.qao-contact-section {
    margin-bottom: clamp(50px, 10vh, 80px);
}

.qao-contact-card {
    background: linear-gradient(135deg, 
        rgba(0, 5, 37, 0.9) 0%,
        rgba(1, 40, 145, 0.85) 50%,
        rgba(0, 5, 37, 0.8) 100%
    );
    backdrop-filter: blur(30px);
    border: 2px solid rgba(141, 220, 250, 0.3);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.qao-contact-header {
    background: linear-gradient(135deg, 
        rgba(141, 220, 250, 0.2) 0%, 
        rgba(202, 240, 250, 0.15) 100%
    );
    padding: clamp(40px, 8vw, 60px) clamp(30px, 6vw, 50px);
    text-align: center;
    border-bottom: 1px solid rgba(141, 220, 250, 0.2);
}

.qao-contact-header h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #8ddcfa, #caf0fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.qao-contact-header p {
    font-size: clamp(1rem, 2.5vw, 1rem);
    color: rgba(204, 242, 251, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.qao-form-wrapper {
    padding: clamp(40px, 8vw, 60px) clamp(30px, 6vw, 50px);
}

.qao-contact-form {
    display: grid;
    gap: 24px;
}

/* Form Group */
.qao-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qao-form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #8ddcfa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qao-form-label i {
    color: #caf0fa;
    font-size: 1rem;
}

.qao-required {
    color: #f87171;
    margin-left: 2px;
}

/* Input Fields */
.qao-form-control,
.qao-form-select,
.qao-form-textarea {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #ffffff;
    background: rgba(141, 220, 250, 0.08);
    border: 1.5px solid rgba(141, 220, 250, 0.2);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.qao-form-control::placeholder,
.qao-form-textarea::placeholder {
    color: rgba(204, 242, 251, 0.5);
    font-weight: 400;
}

.qao-form-control:hover,
.qao-form-select:hover,
.qao-form-textarea:hover {
    transform: scale(1.02);
    border-color: rgba(141, 220, 250, 0.4);
    background: rgba(141, 220, 250, 0.12);
}

.qao-form-control:focus,
.qao-form-select:focus,
.qao-form-textarea:focus {
    transform: scale(1.02);
    background: rgba(141, 220, 250, 0.15);
    border-color: #8ddcfa;
    box-shadow: 0 0 0 4px rgba(141, 220, 250, 0.15);
}

.qao-form-textarea {
    height: 110px;
    resize: vertical;
    padding: 14px 18px;
}

.qao-form-select {
    cursor: pointer;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
}

/* ✅ تخصيص خلفية القوائم المنسدلة */
.qao-form-select option {
    color: #15449c;
    padding: 12px 18px;
    font-weight: 500;
}

.qao-form-select option:hover {
    color: #00BFFF;
}

.qao-form-select option:checked,
.qao-form-select option:focus {
    color: #15449c;
    font-weight: 600;
}

.qao-form-select optgroup {
    color: #072364;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 8px 12px;
    letter-spacing: 1px;
}

/* ✅ لون الخلفية الأولي للـ placeholder option */
.qao-form-select option[value=""] {
    font-style: italic;
}

/* Grid Layout */
.qao-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Radio Buttons */
.qao-radio-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qao-radio-label-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #8ddcfa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qao-radio-label-text i {
    color: #caf0fa;
    font-size: 1rem;
}

.qao-radio-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.qao-radio-option {
    position: relative;
}

.qao-radio-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.qao-radio-option label {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    background: rgba(141, 220, 250, 0.08);
    border: 1.5px solid rgba(141, 220, 250, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.qao-radio-option label i {
    font-size: 1.25rem;
    color: rgba(204, 242, 251, 0.6);
    transition: all 0.3s ease;
}

.qao-radio-option label span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(204, 242, 251, 0.7);
    transition: all 0.3s ease;
}

.qao-radio-option label:hover {
    transform: scale(1.05);
    border-color: rgba(141, 220, 250, 0.4);
    background: rgba(141, 220, 250, 0.12);
}

.qao-radio-option input:checked + label {
    transform: scale(1.05);
    background: rgba(141, 220, 250, 0.2);
    border-color: #8ddcfa;
    box-shadow: 0 0 0 3px rgba(141, 220, 250, 0.15);
}

.qao-radio-option input:checked + label i {
    color: #8ddcfa;
}

.qao-radio-option input:checked + label span {
    color: #ffffff;
}

/* Country Select */
.qao-country-wrapper {
    position: relative;
}

.qao-country-flag {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.375rem;
    pointer-events: none;
    z-index: 1;
}

.qao-country-select {
    padding-left: 48px;
}

.qao-auto-detect-info {
    margin-top: 6px;
    padding: 6px 10px;
    background: rgba(141, 220, 250, 0.15);
    border: 1px solid rgba(141, 220, 250, 0.3);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #8ddcfa;
    display: none;
    align-items: center;
    gap: 6px;
}

.qao-auto-detect-info i {
    color: #caf0fa;
}

/* Submit Button */
.qao-submit-section {
    margin-top: 8px;
}

.qao-submit-btn {
    width: 100%;
    height: 52px;
    padding: 0 32px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #8ddcfa 0%, #012891 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 15px 40px rgba(141, 220, 250, 0.5);
}

.qao-submit-btn:hover:not(:disabled) {
    transform: scale(1.03);
    background: linear-gradient(135deg, #caf0fa 0%, #8ddcfa 100%);
    box-shadow: 0 20px 50px rgba(141, 220, 250, 0.7);
}

.qao-submit-btn:active {
    transform: scale(0.98);
}

.qao-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Spinner */
.qao-spinner {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: qaoSpin 0.7s linear infinite;
}

@keyframes qaoSpin {
    to { transform: rotate(360deg); }
}

/* Response Message */
.qao-form-message {
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 12px;
    animation: qaoSlideIn 0.4s ease;
}

@keyframes qaoSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qao-form-message i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.qao-form-message.qao-success {
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    display: flex;
}

.qao-form-message.qao-error {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    display: flex;
}

.qao-form-message.qao-info {
    background: rgba(59, 130, 246, 0.15);
    border: 2px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    display: flex;
}

/* Honeypot */
.qao-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ✅ RTL Support */
[dir="rtl"] .qao-step-number {
    margin-right: 0;
    margin-left: clamp(15px, 3vw, 30px);
}

[dir="rtl"] .qao-country-flag {
    left: auto;
    right: 14px;
}

[dir="rtl"] .qao-country-select {
    padding-left: 18px;
    padding-right: 48px;
}

[dir="rtl"] .qao-form-select {
    background-position: left 14px center;
    padding-right: 18px;
    padding-left: 42px;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 768px) {
    /* ✅ تقليل padding و margin للشاشات الصغيرة */
    .qao-content {
        padding: clamp(30px, 6vh, 50px) 0;
    }

    .qao-container {
        padding: 0 clamp(15px, 3vw, 25px);
    }

    .qao-section-header {
        margin-bottom: clamp(30px, 6vh, 50px);
    }

    .qao-badge {
        margin-bottom: 15px;
        padding: clamp(6px, 1.5vw, 10px) clamp(15px, 3vw, 25px);
    }

    .qao-section-title {
        letter-spacing: -1px;
        margin-bottom: 15px;
    }

    .qao-steps-section {
        margin-bottom: clamp(50px, 10vh, 80px);
    }

    .qao-steps-wrapper {
        margin-bottom: clamp(30px, 6vh, 50px);
    }

    .qao-step {
        margin-bottom: 25px;
    }

    .qao-step-content {
        padding: clamp(20px, 3vw, 25px) clamp(20px, 4vw, 30px);
    }

    .qao-step-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }

    .qao-contact-header {
        padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px);
    }

    .qao-form-wrapper {
        padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px);
    }

    .qao-contact-form {
        gap: 18px;
    }

    .qao-form-group {
        gap: 6px;
    }

    /* ✅ الاسم الأول والأخير في نفس السطر 50:50 */
    .qao-form-row:first-of-type {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* ✅ Email و Age - كل واحد في سطر منفصل */
    .qao-form-row:nth-of-type(2) {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* ✅ الدولة والواتساب في نفس السطر (30% - 70%) */
    .qao-form-row:nth-of-type(3) {
        grid-template-columns: 30% 1fr;
        gap: 12px;
    }

    /* ✅ نوع التلميذ - زرين في نفس السطر 50:50 */
    .qao-radio-wrapper:first-of-type .qao-radio-options {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* ✅ نوع المدرس - 3 أزرار في نفس السطر */
    .qao-radio-wrapper:nth-of-type(2) .qao-radio-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .qao-radio-option label {
        justify-content: center;
        padding: 0 8px;
        height: 44px;
        font-size: 0.75rem;
    }

    .qao-radio-option label i {
        font-size: 1.1rem;
    }

    .qao-radio-option label span {
        font-size: 0.75rem;
    }

    /* ✅ تقليل حجم الحقول */
    .qao-form-control,
    .qao-form-select,
    .qao-form-textarea {
        height: 44px;
        padding: 0 16px;
        font-size: 0.875rem;
    }

    .qao-form-textarea {
        height: 100px;
        padding: 12px 16px;
    }

    .qao-country-flag {
        left: 12px;
        font-size: 1.25rem;
    }

    .qao-country-select {
        padding-left: 44px;
    }

    .qao-submit-btn {
        height: 48px;
        font-size: 0.9375rem;
    }

    .qao-form-message {
        padding: 14px 18px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .qao-section-title {
        font-size: 2rem;
    }

    .qao-badge {
        font-size: 0.7rem;
        padding: 6px 18px;
    }

    .qao-step-number {
        min-width: 45px;
        height: 45px;
    }

    .qao-number-circle {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .qao-step-title {
        font-size: 1.2rem;
    }

    .qao-step-icon {
        font-size: 1.5rem;
    }

    .qao-contact-header h2 {
        font-size: 1.8rem;
    }

    .qao-form-row:first-of-type {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .qao-form-row:nth-of-type(3) {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .qao-radio-wrapper:first-of-type .qao-radio-options,
    .qao-radio-wrapper:nth-of-type(2) .qao-radio-options {
        grid-template-columns: 1fr;
    }

    .qao-radio-option label {
        justify-content: flex-start;
        padding: 0 16px;
    }
}