:root {
            --white: #FFFFFF;
            --cream-50: #FFFBF6;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --gray-950: #0a0d12;
            
            --bronze-900: #312E81;
            --bronze-800: #3730A3;
            --bronze-700: #4F46E5;
            --bronze-600: #6366F1;
            --bronze-500: #818CF8;
            --bronze-400: #A5B4FC;
            --bronze-300: #C7D2FE;
            --bronze-200: #E0E7FF;
            --bronze-100: #EEF2FF;
            
            --emerald: #059669;
            --emerald-light: #D1FAE5;
            --blue: #3B82F6;
            --blue-light: #DBEAFE;
            --violet: #8B5CF6;
            --violet-light: #EDE9FE;
            --cyan: #06B6D4;
            --orange: #F97316;
            --red: #EF4444;
            
            --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'DM Serif Display', Georgia, serif;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { 
            font-family: var(--font-sans); 
            font-size: 15px; 
            line-height: 1.6; 
            color: var(--gray-800); 
            background: var(--white); 
            -webkit-font-smoothing: antialiased;
            padding-top: 80px;
        }
        a { text-decoration: none; color: inherit; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        .container { max-width: 1600px; margin: 0 auto; padding: 0 72px; }

        /* HEADER */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 14px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        }

        .header-inner { display: flex; align-items: center; justify-content: space-between; }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 600;
            color: var(--gray-900);
        }

        .logo-mark {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--bronze-700), var(--bronze-900));
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(61, 41, 20, 0.2);
        }

        .logo-mark svg { width: 18px; height: 18px; color: white; }
        .logo sup { font-size: 10px; font-weight: 500; color: var(--bronze-600); margin-left: 2px; }

        .nav { display: flex; align-items: center; gap: 4px; }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-600);
            border-radius: 6px;
            transition: all 0.2s;
        }

        .nav-link:hover { color: var(--gray-900); background: var(--gray-50); }
        .nav-link.active { color: var(--bronze-700); }
        .nav-link svg { width: 14px; height: 14px; }

        .header-actions { display: flex; align-items: center; gap: 12px; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            font-family: var(--font-sans);
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-sm { padding: 8px 16px; font-size: 13px; }
        .btn-lg { padding: 14px 28px; font-size: 15px; }
        .btn-xl { padding: 16px 32px; font-size: 16px; }
        .btn-primary { background: transparent; color: #1E1E24; border: 1.5px solid #1E1E24; }
        .btn-primary:hover { background: #1E1E24; color: #FFFFFF; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10); }
        .btn-secondary { background: var(--gray-900); color: white; }
        .btn-secondary:hover { background: var(--gray-800); }
        .btn-outline { background: transparent; color: var(--gray-700); border: 1px solid var(--gray-200); }
        .btn-outline:hover { background: var(--gray-50); border-color: var(--gray-300); }
        .btn-ghost { color: var(--gray-600); background: transparent; }
        .btn-ghost:hover { color: var(--gray-900); background: var(--gray-50); }
        .btn-icon { width: 16px; height: 16px; }

        .mobile-menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: var(--gray-600);
        }
        .mobile-menu-toggle svg { width: 24px; height: 24px; }

        @media (max-width: 1024px) {
            .nav { display: none; }
            .mobile-menu-toggle { display: flex; }
            .header-actions .btn-ghost { display: none; }
        }

        /* HERO SECTION */
        .careers-hero {
            position: relative;
            padding: 80px 0 100px;
            background: linear-gradient(180deg, var(--gray-950) 0%, #1a1f2e 100%);
            overflow: hidden;
        }

        .careers-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse 60% 50% at 30% 20%, rgba(99,102,241, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse 40% 40% at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .careers-hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .careers-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(99,102,241, 0.15);
            border: 1px solid rgba(99,102,241, 0.25);
            border-radius: 100px;
            margin-bottom: 24px;
        }

        .careers-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--emerald);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        .careers-badge span {
            font-size: 13px;
            font-weight: 600;
            color: var(--bronze-400);
        }

        .careers-hero-title {
            font-family: var(--font-serif);
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 400;
            color: white;
            line-height: 1.15;
            margin-bottom: 24px;
        }

        .careers-hero-title .highlight {
            background: linear-gradient(135deg, var(--bronze-400), var(--bronze-300));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .careers-hero-subtitle {
            font-size: 19px;
            color: var(--gray-400);
            line-height: 1.7;
            max-width: 640px;
            margin: 0 auto 40px;
        }

        .careers-hero-cta {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700));
            color: white;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(99,102,241, 0.3);
        }

        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(99,102,241, 0.4);
        }

        .btn-hero-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.2);
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
        }

        .btn-hero-outline:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(255,255,255,0.3);
        }

        /* CULTURE INTRO SECTION */
        .culture-section {
            padding: 100px 0;
            background: var(--white);
        }

        .culture-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .culture-content h2 {
            font-family: var(--font-serif);
            font-size: 36px;
            font-weight: 400;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

        .culture-content p {
            font-size: 17px;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .culture-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 28px;
        }

        .culture-tag {
            padding: 8px 16px;
            background: var(--bronze-100);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--bronze-700);
        }

        .culture-visual {
            position: relative;
        }

        .culture-card-stack {
            position: relative;
            height: 400px;
        }

        .culture-card {
            position: absolute;
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .culture-card:hover {
            transform: translateY(-8px) rotate(0deg) !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            z-index: 10 !important;
        }

        .culture-card-1 {
            top: 0;
            left: 20px;
            width: 280px;
            transform: rotate(-3deg);
            z-index: 3;
        }

        .culture-card-2 {
            top: 80px;
            right: 0;
            width: 260px;
            transform: rotate(4deg);
            z-index: 2;
        }

        .culture-card-3 {
            bottom: 0;
            left: 40px;
            width: 300px;
            transform: rotate(-1deg);
            z-index: 1;
        }

        .culture-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .culture-card-icon svg { width: 24px; height: 24px; color: white; }

        .culture-card-icon.innovation { background: linear-gradient(135deg, var(--bronze-500), var(--bronze-700)); }
        .culture-card-icon.agile { background: linear-gradient(135deg, var(--blue), #1D4ED8); }
        .culture-card-icon.passion { background: linear-gradient(135deg, var(--violet), #6D28D9); }

        .culture-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .culture-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* BENEFITS SECTION */
        .benefits-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .section-eyebrow {
            font-size: 12px;
            font-weight: 700;
            color: var(--bronze-600);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 40px;
            font-weight: 400;
            color: var(--gray-900);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .benefit-card {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            border-color: var(--bronze-300);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--bronze-100), var(--bronze-200));
        }

        .benefit-icon svg { width: 28px; height: 28px; color: var(--bronze-700); }

        .benefit-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 10px;
        }

        .benefit-card p {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* APPLICATION SECTION */
        .application-section {
            padding: 100px 0;
            background: var(--white);
        }

        .application-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
        }

        .application-info h2 {
            font-family: var(--font-serif);
            font-size: 36px;
            font-weight: 400;
            color: var(--gray-900);
            margin-bottom: 20px;
        }

        .application-info > p {
            font-size: 17px;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .application-checklist {
            list-style: none;
        }

        .application-checklist li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid var(--gray-100);
        }

        .application-checklist li:last-child {
            border-bottom: none;
        }

        .checklist-icon {
            width: 28px;
            height: 28px;
            background: var(--emerald-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .checklist-icon svg { width: 14px; height: 14px; color: var(--emerald); }

        .checklist-text h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .checklist-text p {
            font-size: 14px;
            color: var(--gray-500);
        }

        /* FORM STYLES */
        .application-form-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 24px;
            padding: 40px;
        }

        .form-header {
            margin-bottom: 32px;
        }

        .form-header h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .form-header p {
            font-size: 15px;
            color: var(--gray-500);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 8px;
        }

        .form-label .required {
            color: var(--red);
            margin-left: 2px;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 14px 18px;
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-family: var(--font-sans);
            font-size: 15px;
            color: var(--gray-900);
            transition: all 0.2s;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--gray-400);
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--bronze-500);
            box-shadow: 0 0 0 4px rgba(99,102,241, 0.1);
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 18px;
            padding-right: 48px;
        }

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

        .form-file-wrapper {
            position: relative;
        }

        .form-file-input {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            z-index: 2;
        }

        .form-file-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 32px;
            background: white;
            border: 2px dashed var(--gray-300);
            border-radius: 12px;
            transition: all 0.2s;
            cursor: pointer;
        }

        .form-file-label:hover,
        .form-file-wrapper.dragover .form-file-label {
            border-color: var(--bronze-500);
            background: var(--bronze-100);
        }

        .form-file-icon {
            width: 48px;
            height: 48px;
            background: var(--gray-100);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-file-icon svg { width: 24px; height: 24px; color: var(--gray-500); }

        .form-file-text {
            text-align: center;
        }

        .form-file-text p {
            font-size: 14px;
            color: var(--gray-600);
        }

        .form-file-text p strong {
            color: var(--bronze-600);
        }

        .form-file-text span {
            font-size: 12px;
            color: var(--gray-400);
        }

        .form-file-name {
            display: none;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: var(--emerald-light);
            border-radius: 8px;
            margin-top: 12px;
            font-size: 14px;
            color: var(--emerald);
            font-weight: 500;
        }

        .form-file-name.show { display: flex; }

        .form-file-name svg { width: 16px; height: 16px; }

        .form-checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .form-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid var(--gray-300);
            border-radius: 6px;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 2px;
            accent-color: var(--bronze-600);
        }

        .form-checkbox:checked {
            background: var(--bronze-600);
            border-color: var(--bronze-600);
        }

        .form-checkbox-label {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.5;
        }

        .form-checkbox-label a {
            color: var(--bronze-600);
            text-decoration: underline;
        }

        .form-submit {
            width: 100%;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--bronze-600), var(--bronze-800));
            color: white;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .form-submit:hover {
            background: linear-gradient(135deg, var(--bronze-700), var(--bronze-900));
            box-shadow: 0 8px 24px rgba(99,102,241, 0.3);
            transform: translateY(-2px);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .form-submit svg { width: 18px; height: 18px; }

        /* SUCCESS MESSAGE */
        .form-success {
            display: none;
            text-align: center;
            padding: 48px 32px;
        }

        .form-success.show {
            display: block;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: var(--emerald-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .success-icon svg { width: 40px; height: 40px; color: var(--emerald); }

        .form-success h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .form-success p {
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* FOOTER */
        .footer {
            background: var(--gray-950);
            color: white;
            padding: 80px 0 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.3fr 2fr;
            gap: 48px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand { max-width: 340px; }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-logo-mark {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--bronze-600), var(--bronze-800));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-mark svg { width: 18px; height: 18px; color: white; }

        .footer-desc { 
            font-size: 15px; 
            color: var(--gray-400); 
            line-height: 1.7; 
            margin-bottom: 28px; 
        }

        .footer-social { display: flex; gap: 10px; }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .social-link:hover { 
            background: var(--bronze-700); 
            border-color: var(--bronze-600);
        }
        .social-link svg { width: 18px; height: 18px; color: var(--gray-400); }
        .social-link:hover svg { color: white; }

        .footer-links-grid {
            display: grid;
            grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.5fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr);
            gap: 20px;
        }

        .footer-column h4 {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: white;
            margin-bottom: 20px;
        
            white-space: nowrap;
        }

        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        
        .footer-link { 
            font-size: 14px; 
            color: var(--gray-400); 
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .footer-link:hover { 
            color: white; 
            transform: translateX(2px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 32px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright { font-size: 14px; color: var(--gray-500); }
        
        .footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
        .footer-legal a { 
            font-size: 14px; 
            color: var(--gray-500); 
            transition: color 0.2s;
        }
        .footer-legal a:hover { color: white; }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .culture-grid { grid-template-columns: 1fr; gap: 60px; }
            .culture-card-stack { height: auto; display: flex; flex-direction: column; gap: 20px; }
            .culture-card { position: relative; top: auto; left: auto; right: auto; bottom: auto; width: 100%; transform: none; }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .application-container { grid-template-columns: 1fr; gap: 60px; }
            .footer-top { grid-template-columns: 1fr; gap: 48px; }
            .footer-links-grid { grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.5fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr) minmax(130px, 1.2fr); }
        }

        @media (max-width: 768px) {
            .careers-hero { padding: 60px 0 80px; }
            .careers-hero-title { font-size: 36px; }
            .careers-hero-cta { flex-direction: column; align-items: center; }
            .section-title { font-size: 32px; }
            .benefits-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .application-form-card { padding: 28px; }
        }
    
/* ── Nav wrapping fix for long translations ── */
#header .nav-link,
#header .nav-item > a {
  white-space: nowrap;
}
#header .nav {
  font-size: clamp(12px, 1.1vw, 15px);
  flex-wrap: nowrap;
}
#header .header-inner {
  flex-wrap: nowrap;
  align-items: center;
}
.header-actions {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Hero badge overflow fix for long translations ── */
.hero-badge {
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
