/* Abu Dhabi Family Forum 2025 - Registration Page Styles */

/* CSS Variables for Brand Colors */
:root {
    --primary-purple: #612A75;
    --secondary-purple: #9B59B6;
    --accent-gold: #F39C12;
    --light-blue: #3498DB;
    --dark-navy: #003B71;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --success-green: #27AE60;
    --danger-red: #E74C3C;
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Center Meeting Edge Dividers */
.edge-divider {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 8px; /* overall track height incl. rounded cap */
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.edge-divider .track {
    position: relative;
    height: 4px;
    background: #9b8a58; /* thin gold-like line from screenshot */
}

.edge-divider .center-bridge {
    position: absolute;
    top: -10px;
    /* left: 50%; */
    transform: translateX(-50%);
    width: 118%;
    height: 8px;
    background: #bba85e;
    border-radius: 0 12px 0 0;
}


.edge-divider .right-bridge {
    position: absolute;
    top: 0;
    bottom: -4px;
    /* left: 50%; */
    transform: translateX(50%);
    width: 95%;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 0 0 12px 12px;
}

.edge-divider.edge-divider-bottom .center-bridge {
    top: -2px; /* slight tweak for bottom variant if used near headings */
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Cairo', Arial, sans-serif;
    /* background: var(--gradient-bg); */
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Typography */
.arabic {
    font-family: 'Cairo', Arial, sans-serif;
    font-weight: 400;
    direction: rtl;
    text-align: right;
}

.english {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
}

/* Header Styles */
.header-section {
    /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23667eea" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>'); */
    pointer-events: none;
}

.logo {
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    transform: scale(1.05);
}

.main-logo {
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.event-banner {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.event-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.1"><circle cx="50" cy="50" r="40"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

.event-title {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: #bba85e;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    position: relative;
}

.registration-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
    margin: 0;
}

.registration-card::before { display: none; }

/* Form Header */
.form-header {
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
}

.form-title {
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.5rem;
    width: 100%;
    max-width: 100%;
    line-height: 1.4;
    text-align: center;
}

.form-title .arabic {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.5;
}

.form-title .english {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.4;
}

/* Fallback when spans inside .form-title lack language classes */
.form-title span:first-child { 
    font-size: 1.4rem; 
    display: block; 
    margin-bottom: 0.5rem; 
    font-weight: 700; 
    line-height: 1.5;
}
.form-title span + span { 
    font-size: 1.2rem; 
    color: var(--medium-gray);
    line-height: 1.4;
}

.form-title br {
    display: none;
}

/* Form Sections */
.form-section {
    background: transparent;
    border-radius: 0;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    border: none;
    transition: none;
}

.form-section:hover { box-shadow: none; transform: none; }


/* One-field-per-row layout with bilingual labels */
.field-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
}

.field-label-ar {
    text-align: right;
    color: var(--dark-navy);
    font-size: 1rem;
    font-weight: 500;
}

.field-label-en {
    text-align: left;
    color: var(--dark-navy);
    font-size: 1rem;
    font-weight: 500;
}

.section-title {
    color: var(--primary-purple);
    font-weight: 600;
    /* border-bottom: 2px solid var(--accent-gold); */
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1rem;
    font-size: 1.25rem;
}

/* Form Controls */
.form-label {
    font-weight: 500;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
    display: flex
;
    flex-direction: row;
    justify-content: space-between;
}
.form-days .form-label .english{
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary-purple);
}
 .form-days .form-label .arabic {
     font-size: 1.35rem; 
     font-weight: 500;
     color: var(--primary-purple);
    }

/* Required field asterisk */
label.label-required::after {
    content: " *";
    color: var(--danger-red);
    font-weight: 700;
}

.form-label .english {
    font-size: 1.125rem;
    margin-bottom: 0.2rem;
}

.form-label .arabic {
    font-size: 1.125rem;
    color: var(--medium-gray);
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0 1rem;
    font-size: 1rem;
    transition: var(--transition);
    height: 37px;
    /* background: lightgray; */
    /* background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none); */
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(123, 67, 151, 0.25);
    background: white;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--light-blue);
}

.input-group-text {
    background: var(--light-gray);
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-weight: 500;
}

/* Checkboxes */
.form-check {
    background: white;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.form-check:hover {
    background: #f8f9fa;
    border-color: var(--primary-purple);
}

.form-check-input {
    margin-top: 0.25rem;
    transform: scale(1.2);
}

.form-check-input:checked {
    background-color: var(--primary-purple) !important;
    border-color: var(--primary-purple) !important;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(123, 67, 151, 0.25);
}


.form-check-label {
    font-weight: 500;
    color: var(--dark-navy);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: column-reverse;
}

/* Companions Section */
#companionsSection {
    /* border: 2px dashed var(--primary-purple); */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-bottom: 0 ;
    border-radius: 12px;
}

.companion-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    position: relative;
}

.companion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    border-radius: 2px;
}

.companion-header {
    background: var(--primary-purple);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex
;
    flex-direction: row;
    justify-content: space-between;
}

/* Submit Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border: none;
    border-radius: 25px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(123, 67, 151, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 67, 151, 0.6);
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-purple) 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* reCAPTCHA */
.g-recaptcha {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer-section {
    background: url('../images/Vector.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0;
    position: relative;
    margin-top: 70px;
    min-height: 200px;
}


.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    position: absolute;
    bottom: 40px;
    left: 50px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.social-link span {
    font-size: 1rem;
    font-weight: 500;
}

.social-link:hover {
    color: var(--accent-gold);
    transform: translateY(-3px) scale(1.1);
}

.footer-text {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Validation Styles */
.is-invalid {
    border-color: var(--danger-red) !important;
    animation: shake 0.5s ease-in-out;
}

.is-valid {
    border-color: var(--success-green) !important;
}

.invalid-feedback {
    color: var(--danger-red);
    font-size: 0.875rem;
    font-weight: 500;
}

.valid-feedback {
    color: var(--success-green);
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Loading Animation */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-card {
        padding: 0 0.5rem;
        border-radius: 0;
        margin: 0.5rem;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .form-title {
        font-size: 1.3rem;
        padding: 0 1rem;
    }
    
    .form-title .arabic {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .form-title .english {
        font-size: 1rem;
    }
    /* Fallback for unclassed spans */
    .form-title span:first-child { 
        font-size: 1.2rem; 
        margin-bottom: 0.75rem;
    }
    .form-title span + span { 
        font-size: 1rem; 
    }
    
    .form-section {
        padding: 0.5rem 0;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .form-check {
        padding: 0.5rem;
    }
    
    .social-links {
        bottom: 30px;
        left: 20px;
        gap: 1rem;
    }
    
    .social-link {
        font-size: 1rem;
    }
    
    .social-link span {
        font-size: 0.9rem;
    }
    
    .field-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .field-label-en, .field-label-ar { text-align: start; }
    .field-label-en, .field-label-ar { font-size: 0.95rem; }
    .form-label .english, .form-label .arabic { font-size: 1rem; }
    .section-title { font-size: 1.125rem; }
    .form-check-label { font-size: 0.9rem; }

    
}

@media (max-width: 576px) {
    .main-content {
        padding: 1.5rem 0;
    }
    
    .registration-card {
        padding: 0 0.5rem;
        margin: 0.5rem;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
    }
    
    .event-title {
        font-size: 1rem;
    }
    
    .form-title {
        font-size: 1.1rem !important;
        padding: 0 0.5rem;
    }
    
    .form-title .arabic {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .form-title .english {
        font-size: 0.9rem;
    }
    /* Fallback for unclassed spans */
    .form-title span:first-child { 
        font-size: 14px; 
        margin-bottom: 1rem;
    }
    .form-title span + span { 
        font-size: 0.9rem; 
    }
    
    .logo {
        max-height: 60px !important;
    }
    
    .main-logo {
        max-height: 80px !important;
    }
    
    .social-links {
        bottom: 20px;
        left: 15px;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
    .field-label-en, .field-label-ar { font-size: 0.9rem; }
    .form-label .english, .form-label .arabic { font-size: 0.95rem; }
    .section-title { font-size: 1rem; }
    .form-check-label { font-size: 0.875rem; }
}

/* Print Styles */
@media print {
    .header-section,
    .footer-section,
    .btn-primary,
    .g-recaptcha {
        display: none !important;
    }
    
    .main-content {
        padding: 0;
    }
    
    .registration-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .form-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-purple);
}

/* Accessibility Improvements */
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.btn:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-purple: #5a0080;
        --secondary-purple: #7a00a0;
        --light-gray: #f0f0f0;
        --medium-gray: #404040;
        --dark-navy: #000000;
    }
    
    .form-control,
    .form-select {
        border-width: 3px;
    }
}

input {
    border: 0.51px #6D6E71 solid !important;
    background-color: #F1F2F2 !important;
    /* border-top-right-radius: 0.51px  !important; */
    border-top-left-radius: 0.51px  !important;
    border-bottom-right-radius: 0.51px  !important;
    /* border-bottom-left-radius: 0.51px  !important; */
    height: 37px;
}

select.form-select {
    border: 0.51px #6D6E71 solid !important;
    background-color: #F1F2F2 !important;
    border-top-left-radius: 0.51px  !important;
    border-bottom-right-radius: 0.51px  !important;
    height: 37px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #333 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236D6E71' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

/* Ensure companion count select remains readable on small screens */
@media (max-width: 576px) {
    #companionsCount {
        max-width: 100%;
        width: 100%;
    }
}

.main-content{
    background: url('../images/background.png');
}

/* Forum days section - responsive grid and alignment */
.form-days{ 
    margin: 12px -111px; 
    padding: 0 1rem;
}
.form-days .days-grid{
    display: grid;
    grid-template-columns: repeat(6, minmax(130px, 1fr));
    gap: 0.5rem 1rem;
    align-items: start;
}
.form-days .form-check{ 
    border: 0; 
    background: transparent; 
    padding: 0.25rem 0.5rem; 
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-days .form-check-input{ 
    transform: scale(1.1); 
    margin-top: 0; 
    margin-right: 0.5rem;
    flex-shrink: 0;
}
.form-days .days-all{ 
    justify-self: end; 
    grid-column: -2 / -1; 
    grid-row: 1 / span 2; 
    align-self: start; 
}
.form-days .days-all .form-check-label{ 
    white-space: nowrap; 
    font-weight: 700; 
}

/* Forum days title emphasis */
.form-days > .form-label {
    color: var(--primary-purple);
    font-weight: 700;
}

@media (max-width: 1200px){
    .form-days .days-grid{ 
        grid-template-columns: repeat(5, minmax(110px, 1fr)); 
    }
    .form-days { 
        margin: 12px 0; 
        padding: 0 0.5rem; 
    }
}
@media (max-width: 992px){
    .form-days .days-grid{ 
        grid-template-columns: repeat(4, minmax(110px, 1fr)); 
    }
    .form-days .days-all{ 
        grid-column: -1 / -1; 
        grid-row: 1; 
        justify-self: center; 
    }
}
@media (max-width: 768px){
    .form-days .days-grid{ 
        grid-template-columns: repeat(3, minmax(100px, 1fr)); 
        gap: 0.5rem;
    }
    .form-days { 
        margin: 12px 0; 
        padding: 0; 
    }
    .form-days .form-check{ 
        padding: 0.2rem 0.3rem; 
    }
    .form-days .days-all{ 
        grid-column: 1 / -1; 
        grid-row: 1; 
        justify-self: center; 
        margin-bottom: 0.5rem;
    }
    .form-header {
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 576px){
    .form-days .days-grid{ 
        grid-template-columns: repeat(2, 1fr); 
        gap: 0.3rem 0.5rem;
    }
    .form-days .form-check{ 
        padding: 0.15rem 0.25rem; 
        font-size: 0.9rem;
    }
    .form-days .form-check-input{ 
        transform: scale(1.0); 
    }
    .form-days .days-all{ 
        grid-column: 1 / -1; 
        margin-bottom: 0.75rem;
        justify-self: center;
        text-align: center;
    }
    .form-header {
        margin-bottom: 2rem;
    }
    
    /* Navigation buttons in step 2 */
    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: center;
        justify-content: center !important;
        gap: 1rem;
    }
    .d-flex.justify-content-between a,
    .d-flex.justify-content-between button {
        width: 100%;
        max-width: 250px;
        margin: 0;
        text-align: center;
    }
}

#companionsCount{
    max-width: 35%;
}
.companions-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.companions-label{
    display: flex;
    gap: 15px;
    flex-direction: row;
    justify-content: space-between;
}
.companions-label .english ,.companions-label .arabic
{
    width: max-content;
    color: #98825C; 
    font-weight: 700;
    font-style: bold;
}

.step-2-form-title{
    display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.5;
}

.step-2-form-title .english{
    
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary-purple);
}

.form-label-zone{
    width: -webkit-fill-available;
}

.form-buttons{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .form-buttons {
        flex-direction: column;
    }

    .form-buttons button {
        width: 100%;
        font-size: 14px !important;
    }
}

/* Text separator for bilingual content */
.text-separator {
    margin: 0 0.5rem;
    opacity: 0.6;
    font-weight: normal;
}

/* Responsive button font sizes for all pages */
@media (max-width: 576px) {
    .btn {
        font-size: 14px !important;
    }

    .btn-sm {
        font-size: 12px !important;
    }

    .btn-lg {
        font-size: 16px !important;
        padding: 0.75rem 1.5rem !important;
    }

    /* Specific button overrides for better mobile experience */
    .btn-primary {
        padding: 0.2rem 1rem !important;
        font-size: 15px !important;
    }

    .btn-outline-secondary {
        padding: 0.75rem 1.5rem !important;
        font-size: 15px !important;
    }

    /* Responsive text separator */
    .text-separator {
        margin: 0 0.25rem;
    }
}

.logo-mobile{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


#terms, #concertTerms {
    float: right;
    margin-right: -1.5em;
}

.same-width{
    width: -webkit-fill-available;
    min-height: 60px;
}

.button-container{
    width: max-content;
}

.ts-wrapper.form-control, .ts-wrapper.form-select{
    border: 0.51px #6D6E71 solid !important;
    background-color: #F1F2F2 !important;
    border-top-left-radius: 0.51px !important;
    border-bottom-right-radius: 0.51px !important;
    height: 37px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #333 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236D6E71' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}