/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAF3DD;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
    background-color: #c58e5f;
    color: white;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.company-name {
    margin-left: 15px;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Layout */
.split-layout {
    display: flex;
    min-height: 80vh;
    margin-top: 0px;
    position: relative;
    z-index: 1;
}

.left, .right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.left {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
    justify-content: flex-start;
}

.left h1 {
    font-size: 32px;
    color: #A63446;
    margin-bottom: 10px;
    line-height: 1.2;
}

.left p {
    font-size: 16px;
    color: #2E2E2E;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #A63446;
    margin-bottom: 20px;
    font-style: italic;
    align-self: center;
}

.cta-button {
    background-color: #A63446;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.right {
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
}

.right img {
    width: 80%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    transition: opacity 0.5s ease-in-out;
    position: relative;
    z-index: 1;
}

/* Smooth fade transition */
.fade-out {
    opacity: 0;
}

/* Navigation buttons */
.image-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 400px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 2;
    pointer-events: none;
}

.image-controls button {
    pointer-events: auto;
}

.right:hover .image-controls {
    opacity: 1;
}

/* Hide controls on mobile devices - use swipe gestures instead */
@media (max-width: 768px) {
    .image-controls {
        display: none;
    }
}

.image-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.image-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Home page improvements */
.intro-text {
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.5;
}

.highlight {
    font-weight: bold;
    color: #A63446;
    font-style: italic;
}

.highlight.with-line::after {
    content: '';
    display: block;
    width: 40%;
    height: 2px;
    background-color: #c58e5f;
    margin: 15px auto 20px auto;
}

.home-quote {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid #c58e5f;
}

.home-quote p {
    font-style: italic;
    color: #2E2E2E;
    margin-bottom: 10px;
    line-height: 1.5;
}

.home-quote small {
    color: #A63446;
    font-weight: bold;
}

small {
    color: #A63446;
    font-weight: bold;
}

/* Service pages */
.service-page {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-header h1 {
    font-size: 36px;
    color: #A63446;
    margin-bottom: 20px;
}

.quote {
    font-style: italic;
    font-size: 18px;
    color: #2E2E2E;
    max-width: 600px;
    margin: 0 auto;
    border-left: 4px solid #c58e5f;
    padding-left: 20px;
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-intro {
    margin-bottom: 40px;
    text-align: center;
}

.service-intro p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.service-intro strong {
    color: #A63446;
    cursor: pointer;
    text-decoration: none;
}

.service-intro strong:hover {
    color: #8B2538;
}

.service-intro a {
    text-decoration: none;
}

.service-intro a strong {
    color: #A63446;
    text-decoration: none;
}

.service-intro a:hover strong {
    color: #8B2538;
}

.service-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-section {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.service-section h3 {
    color: #A63446;
    margin-bottom: 15px;
    font-size: 24px;
}

.service-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.service-section em {
    color: #666;
    font-style: italic;
    display: block;
    margin-top: -10px;
    margin-bottom: 15px;
}

.service-section.method {
    border-left: 4px solid #c58e5f;
}

.service-section strong {
    color: #A63446;
}

/* Subsections within service sections */
.subsection {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
}

.subsection:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Reduce line spacing in Mode d'emploi subsections */
.subsection p {
    line-height: 1.4;
    margin-bottom: 12px;
}

.subtitle {
    color: #c58e5f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

/* CGV Page Styles */
.cgv-nav {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-left: 4px solid #c58e5f;
}

.cgv-nav h3 {
    color: #A63446;
    margin-bottom: 15px;
}

.cgv-nav ul {
    list-style: none;
    padding: 0;
}

.cgv-nav li {
    margin-bottom: 8px;
}

.cgv-nav a {
    color: #2E2E2E;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cgv-nav a:hover {
    background-color: #FAF3DD;
    color: #A63446;
}

.cgv-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cgv-section {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    scroll-margin-top: 100px;
    border-left: 4px solid #c58e5f;
}

.cgv-section h3 {
    color: #A63446;
    margin-bottom: 15px;
    font-size: 20px;
}

.cgv-section p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cgv-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.cgv-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: justify;
}

/* Footer Styles */
footer {
    background-color: #c58e5f;
    color: white;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.footer-section p {
    margin: 0;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FAF3DD;
}

/* Offers Page Styles */
.offers-main {
    margin-bottom: 50px;
}

.offers-main h2 {
    text-align: center;
    color: #A63446;
    font-size: 28px;
    margin-bottom: 30px;
}

.main-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.offer-card {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #c58e5f;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.offer-card.premium {
    border-top-color: #A63446;
}

.offer-card.standard {
    border-top-color: #c58e5f;
}

.offer-card.basic {
    border-top-color: #8B7355;
}

.offer-header {
    background: linear-gradient(135deg, #FAF3DD 0%, #F5E6B8 100%);
    padding: 25px;
    text-align: center;
    position: relative;
}

.offer-header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #A63446;
}



.price {
    font-size: 36px;
    font-weight: bold;
    color: #A63446;
}

.offer-card.premium .price {
    color: white;
}

.offer-content {
    padding: 25px;
}

.offer-description {
    font-size: 16px;
    color: #2E2E2E;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: justify;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.offer-features li {
    padding: 8px 0;
    border-bottom: 1px solid #F0F0F0;
    position: relative;
    padding-left: 25px;
}

.offer-features li:before {
    content: "✓";
    color: #A63446;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-note {
    background: #FAF3DD;
    padding: 15px;
    border-radius: 8px;
    font-style: italic;
    color: #666;
    font-size: 14px;
    border-left: 3px solid #c58e5f;
}

.services-table-section {
    margin-bottom: 50px;
}

.services-table-section h2 {
    text-align: center;
    color: #A63446;
    font-size: 28px;
    margin-bottom: 30px;
}

.table-container {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    overflow-x: auto;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.services-table thead {
    background: #A63446;
    color: white;
}

.services-table th {
    padding: 15px 10px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
}

.services-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #F0F0F0;
    vertical-align: top;
}

.services-table tbody tr:hover {
    background: #FAF3DD;
}

.services-table tbody tr:last-child td {
    border-bottom: none;
}

.services-table strong {
    color: #A63446;
}

.contact-section {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #c58e5f;
}

.contact-section h2 {
    color: #A63446;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-section strong a {
    color: #A63446;
    text-decoration: none;
}

.contact-section strong a:hover {
    text-decoration: underline;
}

nav ul li a.active {
    border-bottom: 2px solid white;
    padding-bottom: 2px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #c58e5f;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 999;
        padding-top: 80px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        margin: 0;
        list-style: none;
        height: auto;
        min-height: calc(100vh - 120px);
    }
    
    nav ul li {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        font-size: 16px;
        padding: 20px 10px;
        display: block;
        text-align: left;
        color: white;
        text-decoration: none;
        transition: background-color 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    nav ul li a:hover,
    nav ul li a:focus {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    nav ul li a.active {
        border-bottom: none;
        border-left: 4px solid white;
        background-color: rgba(255, 255, 255, 0.2);
        font-weight: bold;
    }
}

@media (max-width: 480px) {
    nav {
        width: 90%;
    }
    
    nav ul li a {
        font-size: 15px;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #A63446 0%, #c58e5f 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-style: italic;
}

.contact-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #c58e5f;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card:nth-child(1) {
    border-top-color: #A63446;
}

.contact-card:nth-child(2) {
    border-top-color: #c58e5f;
}

.contact-card:nth-child(3) {
    border-top-color: #8B7355;
}

.map-section {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #c58e5f;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h2 {
    color: #A63446;
    font-size: 32px;
    margin-bottom: 15px;
    font-style: italic;
}

.map-header p {
    color: #2E2E2E;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    width: 100%;
}

.map-container iframe {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    display: block;
}

.map-container iframe:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A63446 0%, #c58e5f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-info {
    text-align: center;
}

.contact-info h3 {
    color: #A63446;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: bold;
}

.contact-info h3 a {
    color: #A63446;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info h3 a:hover {
    color: #8B2538;
}

.contact-info p {
    color: #2E2E2E;
    line-height: 1.6;
    margin: 0;
}


/* Responsive design for contact page */
@media (max-width: 768px) {
    .contact-page {
        padding: 20px;
    }
    
    .contact-header {
        padding: 40px 20px;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
        gap: 15px;
    }
    
    .map-section {
        padding: 25px 20px;
    }
    
    .map-header h2 {
        font-size: 26px;
    }
    
    .map-header p {
        font-size: 16px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 60px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #A63446;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #8B2538;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    display: flex;
}

/* Large tablets and small laptops */
@media (max-width: 1024px) {
    header {
        padding: 15px 30px;
    }
    
    .split-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .left, .right {
        padding: 30px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 14px;
    }
    
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Medium tablets */
@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
        height: auto;
    }
    
    .left, .right {
        padding: 20px;
    }
    
    .left h1 {
        font-size: 28px;
    }
    
    .about-layout {
        flex-direction: column;
        padding: 20px;
    }
    
    .resume-box {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .text-image {
        flex-direction: column;
        text-align: center;
    }
    
    .text-image img {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .service-page {
        padding: 20px;
    }
    
    .service-header h1 {
        font-size: 28px;
    }
    
    .service-section {
        padding: 20px;
    }
    
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    .logo {
        margin-bottom: 0;
        font-size: 20px;
    }
    
    .company-name {
        font-size: 16px;
        margin-left: 10px;
    }
    
    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* CGV responsive */
    .cgv-nav {
        padding: 15px;
    }
    
    .cgv-section {
        padding: 20px;
    }
    
    /* Offers page responsive */
    .main-offers {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-card {
        margin-bottom: 20px;
    }
    
    .offer-header {
        padding: 20px;
    }
    
    .offer-content {
        padding: 20px;
    }
    
    .price {
        font-size: 28px;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .services-table {
        min-width: 600px;
        font-size: 12px;
    }
    
    .services-table th,
    .services-table td {
        padding: 10px 8px;
    }
    
    .contact-section {
        padding: 20px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    header {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .company-name {
        font-size: 14px;
        margin-left: 8px;
    }
    
    nav ul {
        gap: 10px;
        font-size: 12px;
    }
    
    .left, .right {
        padding: 15px;
    }
    
    .left h1 {
        font-size: 24px;
    }
    
    .intro-text {
        font-size: 13px;
    }
    
    .right img {
        width: 90%;
    }
    
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 25px 15px;
        gap: 12px;
    }
    
    .contact-header {
        padding: 30px 15px;
    }
    
    .contact-header h1 {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 14px;
    }
    
    .map-section {
        padding: 20px 15px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo img {
        height: 45px;
    }
    
    .company-name {
        font-size: 12px;
    }
    
    nav ul li a {
        font-size: 11px;
    }
    
    .left h1 {
        font-size: 22px;
    }
    
    .contact-header h1 {
        font-size: 24px;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .split-layout {
        min-height: auto;
        height: auto;
    }
    
    .left, .right {
        padding: 20px;
    }
    
    .left h1 {
        font-size: 26px;
        margin-bottom: 8px;
    }
    
    .intro-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .right img {
        max-height: 300px;
        width: auto;
    }
    
    header {
        padding: 10px 20px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
    }
}

/* Improve text readability */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Better tap targets */
    nav ul li a {
        padding: 8px 4px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-links li a {
        padding: 8px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}