/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #dc2626;
    min-height: 100vh;
    font-size: 16px;
}

/* Navigation ATAA */
.siteNav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.siteContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.siteContainer--full-width-large {
    max-width: 1400px;
}

.siteNav__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.siteNav-brand img {
    height: 40px;
}

.siteNav-primary {
    display: flex;
    list-style: none;
    gap: 30px;
}

.siteNav-primary__link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s;
}

.siteNav-primary__link:hover {
    color: #dc2626;
}

.siteNav-primary__icon {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    transition: all 0.2s;
    fill: currentColor;
}

.siteNav-primary__link:hover .siteNav-primary__icon {
    opacity: 1;
    transform: scale(1.1);
}

.siteNav-secondary {
    display: flex;
    list-style: none;
    gap: 20px;
}

.siteNav-secondary__link {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.siteNav-secondary__link--subscribe {
    background: #dc2626;
    color: white;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.siteNav-secondary__link--subscribe:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.siteNav-secondary__link--login {
    color: #dc2626;
    border: 2px solid #dc2626;
    background: transparent;
}

.siteNav-secondary__link--login:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-1px);
}

.svg-arrow {
    width: 12px;
    height: 12px;
    margin-left: 5px;
}

/* Header principal */
.homeHeader {
    background: #dc2626;
    position: relative;
    padding: 120px 0 80px;
    margin-top: 70px;
    overflow: hidden;
}

.homeHeader__bgOne,
.homeHeader__bgTwo {
    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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/><rect x="50" y="10" width="3" height="3" fill="rgba(255,255,255,0.1)"/><polygon points="10,70 15,65 20,70 15,75" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
}

.homeHeader__bgTwo {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="70" r="2" fill="rgba(255,255,255,0.05)"/><rect x="70" y="50" width="2" height="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 80px 80px;
}

.homeHeader__content {
    position: relative;
    z-index: 2;
}

.homeHeader-title {
    text-align: center;
    color: white;
}

.homeHeader-title__subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.9;
}

.homeHeader-title__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.homeHeader-title__intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.homeHeader-title__intro p {
    margin: 0;
}

/* Calculateur principal */
.calculator {
    background: white;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
}

.calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #b91c1c, #dc2626);
}

/* Sélecteur de mode avec animations */
.mode-selector {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.mode-selector-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    width: 33.333%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    z-index: 1;
    box-shadow: 0 -2px 8px rgba(220, 38, 38, 0.3);
}

.mode-selector-indicator[data-active="rate"] {
    transform: translateX(100%);
}

.mode-selector-indicator[data-active="compare"] {
    transform: translateX(200%);
}

.mode-btn {
    flex: 1;
    padding: 20px 24px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    letter-spacing: 0.3px;
}

.mode-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mode-btn:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.05);
}

.mode-btn:hover::before {
    opacity: 1;
}

.mode-btn.active {
    color: #dc2626;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.6);
}

/* Contenu des modes avec animations */
.mode-content {
    display: none;
    padding: 48px;
    background: white;
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mode-content.active {
    display: block;
}

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

/* Grille pour organiser les inputs */
.inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.inputs-grid .input-group {
    margin-bottom: 0;
}

.inputs-grid .input-group.full-width {
    grid-column: 1 / -1;
}

.mode-content h2 {
    color: #1e293b;
    font-size: 1.75rem;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    padding-bottom: 16px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.mode-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
}

.mode-description {
    color: #475569;
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.7;
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
    position: relative;
    overflow: hidden;
}

.mode-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #dc2626, #ef4444);
}

/* Groupes d'inputs */
.input-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #dc2626;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: #1e293b;
    font-weight: 500;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1), 0 4px 12px rgba(220, 38, 38, 0.15);
    transform: translateY(-2px);
    background: #fefefe;
}

.input-group input:hover:not(:focus),
.input-group select:hover:not(:focus) {
    border-color: #cbd5e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.input-group input:valid,
.input-group select:valid {
    border-color: #dc2626;
}

.input-group input:hover,
.input-group select:hover {
    border-color: #a8b5c1;
}

.input-group.optional {
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #fecaca;
    position: relative;
    overflow: hidden;
}

.input-group.optional::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #dc2626, #ef4444);
}

.input-group.optional small,
.input-group small.help-text {
    display: block;
    margin-top: 8px;
    color: #5a6c7d;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.4;
}

.input-group small.help-text {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Résultats avec design moderne */
.result {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    color: white;
    padding: 36px;
    border-radius: 16px;
    text-align: center;
    margin-top: 32px;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.result-net {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #059669 100%);
    background-size: 200% 200%;
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.25);
}

.result h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.result-value {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}

/* Mode comparaison */
.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.scenario {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.scenario h3 {
    color: #dc2626;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid #fecaca;
    padding-bottom: 12px;
}

.result-mini {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid #d1d9e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.comparison-result {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-result h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.difference,
.percentage {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.difference .label,
.percentage .label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difference .value,
.percentage .value {
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.interpretation {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    grid-column: 1 / -1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.5;
}

/* Disclaimer */
.disclaimer {
    background: #fff8e1;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1);
}

.disclaimer p {
    color: #8a6d3b;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Section Déductions - Design moderne type tableau */
.deductions-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.deductions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.deductions-title {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.deductions-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #dc2626, transparent);
}

/* Tableau de déductions moderne */
.deductions-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.deductions-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid #e2e8f0;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.deduction-header-cell {
    display: flex;
    align-items: center;
}

.deduction-header-cell:last-child {
    justify-content: flex-end;
}

.deduction-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

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

.deduction-row:hover {
    background: #f8fafc;
    transform: translateX(4px);
    box-shadow: -4px 0 0 0 #dc2626;
}

.deduction-cell {
    display: flex;
    align-items: center;
    color: #1e293b;
}

.deduction-cell-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.deduction-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
}

.deduction-description {
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
}

.deduction-cell-rate {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
    justify-content: center;
}

.deduction-cell-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #dc2626;
    justify-content: flex-end;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 30px 20px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-stylized {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
        max-width: 250px;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .mode-selector {
        flex-direction: column;
    }
    
    .mode-btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .mode-content {
        padding: 20px;
    }
    
    .mode-content h2 {
        font-size: 1.5rem;
    }
    
    .result-value {
        font-size: 2rem;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .comparison-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .difference .value,
    .percentage .value {
        font-size: 1.3rem;
    }
    
    .inputs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .deductions-table-header,
    .deduction-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .deduction-header-cell:last-child,
    .deduction-cell-value {
        justify-content: flex-start;
    }
    
    .deduction-row:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .siteNav__content {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
    
    .siteNav-primary {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .siteNav-secondary {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.6rem;
    }
    
    .result-value {
        font-size: 1.8rem;
    }
    
    .mode-content {
        padding: 15px;
    }
    
    .input-group input,
    .input-group select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

/* Animations améliorées */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation pour les valeurs qui changent */
.deduction-cell-value,
.result-value {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.deduction-cell-value:not(:empty) {
    animation: pulse 0.5s ease;
}

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

/* Surcharge des polices distantes absentes pour éviter les 404 (BrandonText / ArialRounded) */
@font-face {
    font-family: 'ArialRounded';
    src: local('Arial Rounded MT Bold'), local('Arial Rounded MT'), local('ArialRoundedMTBold');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BrandonText';
    src: local('Brandon Text'), local('BrandonText-Regular'), local('Segoe UI'), local('Roboto');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BrandonText';
    src: local('Brandon Text Medium'), local('BrandonText-Medium'), local('Segoe UI Semibold'), local('Roboto Medium');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BrandonText';
    src: local('Brandon Text Bold'), local('BrandonText-Bold'), local('Segoe UI Bold'), local('Roboto Bold');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BrandonText';
    src: local('Brandon Text Light'), local('BrandonText-Light'), local('Segoe UI'), local('Roboto');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* États des inputs */
.input-group input:invalid {
    border-color: #dc3545;
}

.input-group input:valid {
    border-color: #28a745;
}

/* Focus visible pour l'accessibilité */
.mode-btn:focus,
.input-group input:focus,
.input-group select:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Footer ATAA */
.siteFooter {
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    padding: 40px 0;
    margin-top: 60px;
}

.siteContainer--full-width-small {
    max-width: 1000px;
}

.siteFooter-social {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.siteFooter-social__item a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s;
}

.siteFooter-social__item a:hover {
    color: #dc2626;
}

.siteFooter-social__item img {
    width: 16px;
    height: 16px;
}

.siteFooter-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.siteFooter-links__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.siteFooter-links__list {
    list-style: none;
}

.siteFooter-links__item {
    margin-bottom: 8px;
}

.siteFooter-links__item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.siteFooter-links__item a:hover {
    color: #dc2626;
}

/* Responsive pour le footer */
@media (max-width: 768px) {
    .siteFooter-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .siteFooter-social {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .siteFooter-nav {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
