/* Import base styles and variables */
@import 'reset.css';
@import 'variables.css';

/* Base styles */
body {
    font-family: var(--font-family-body);
    color: var(--text-color);
    background-color: var(--background1-color);
    position: relative;
}

/* Layout containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--title-color);
    line-height: 1.2;
    font-family: var(--font-family-titles);
}

/* Skip Link - Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--text-color);
    color: var(--white-color);
    padding: var(--space-sm);
    z-index: 100;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

:focus {
    outline: 2px solid #FFC400; /* High-contrast color */
    outline-offset: 3px;
}
/* Using mouse - hide focus outline */
.using-mouse *:focus {
    outline: none;
}

.fade-in-element {
  /* Initial State: Invisible and ready to fade in */
  opacity: 0; 
  /* We still keep the transition properties */
  transition: opacity 0.8s ease-out;
  /* Keep the custom variable for the staggered delay */
  transition-delay: var(--animation-delay, 0s); 
}

.fade-in-element.is-visible {
  /* Final State: Fully visible */
  opacity: 1;
}

/* Header Styles ------------------------------------------------------------------------*/
/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    background-color: var(--nav-bar-color);
    padding: var(--space-sm) 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
}

/* Logo */
.logo-container {
    flex: 1;
    text-align: left; /* Mobile: left */
}

.brand-logo {
    height: 70px;
    width: auto;
}

/* Desktop social icons */
.social-icons {
    display: none; /* Hidden on mobile */
    gap: var(--space-sm);
    align-items: center;
    flex: 1;
}

/* Nav links */
.nav-links {
    display: none; /* Hidden on mobile */
    gap: var(--space-lg);
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background-color: none;
    color: var(--text-color);
    border: 2px solid var(--text-color);
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.cta-button:hover {
    color: var(--title-color);
    border-color: var(--title-color);
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all var(--transition-fast);
}

/* Hamburger animation */
.hamburger-menu.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--nav-bar-color);
    padding: var(--space-xl);
    z-index: 5;
}

.mobile-menu.is-active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
    margin-top: var(--space-2xl);
    list-style: none;
    padding: 0;
}

.mobile-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: var(--font-lg);
}

.mobile-social-icons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-xl);
}
.mobile-social-icons svg {
    height: 32px;
    width: 32px;
    display: block;
    fill: var(--text-color);
    transition: fill 0.2s ease
}
.mobile-social-icons svg:hover{
    fill: var(--title-color);
}


/* Desktop Layout */
@media screen and (min-width: 992px) {
    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        column-gap: var(--space-4xl);
        max-width: 2000px;
        margin: 0 auto;
        padding: 0 var(--space-lg);
    }

    .logo-container {
        grid-column: 2;
        grid-row: 1; /* force same row */
        justify-self: center;
        text-align: center;
    }

    .nav-links {
        display: flex;
        grid-column: 3;
        grid-row: 1; /* same row */
        justify-self: end;
        align-items: center;
        gap: var(--space-lg);
        list-style: none;
        margin: 0;
        padding: 0;
        white-space: nowrap;
    }

    .social-icons {
        display: flex;
        grid-column: 1;
        grid-row: 1; /* same row as others */
        justify-self: start;
        align-items: center;
        gap: var(--space-sm);
        margin: 0;
        padding: 0;
        transition: fill 0.2s ease
    }

    .social-icons svg {
        height: 32px;
        width: 32px;
        display: block;
        fill: var(--text-color);
        transition: fill 0.2s ease
    }

    .social-icons svg:hover{
        fill: var(--title-color);
    }
    

    .brand-logo {
        height: 70px;
        width: auto;
        display: block;
        
    }

    .nav-links li a {
        text-decoration: none;
        color: var(--text-color);
        transition: color var(--transition-fast);
    }

    .nav-links li a:hover {
        color: var(--title-color);
    }

    .hamburger-menu,
    .mobile-social-icons,
    .mobile-menu {
        display: none !important;
    }
}

/* Hero Section Styles ----------------------------------------------------------------*/
.hero {
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
    background-color: var(--background3-color);
    text-align: center;
    position: relative;

    
    
}
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    max-width: 700px;
    padding: 0 var(--space-md);
    margin: 0 auto;
    
}
.hero-image {
    display: block;
    max-width: 100%;
    height: auto;

}
.cta-flower-decoration {
    display: none; 
}
.hero h1 {
    font-size: var(--font-5xl);
    margin-bottom: var(--space-md);
    font-weight: 500;
    
}
.hero h3{
    font-size: var(--font-xl);
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--text-color);
    font-weight: 100;
}
.hero p {
    font-size: var(--font-lg);
    margin: 0 auto;
    line-height: 1.4;
    margin-top: var(--space-xl);
    text-align: left;
}

/* --- Desktop Styles (Screen size 768px and up) --- */
@media (min-width: 922px) {
    /* 1. Change the flex direction from column to row */
    .hero-container {
        flex-direction: row; 
        
        /* Spread the image and text apart */
        justify-content: space-between; 
        
        /* Ensure the maximum width is increased for desktop viewing */
        max-width: 1200px; 
    }

    /* 2. Style the image and text to sit next to each other */
    .hero-container picture, 
    .hero-container .hero-text {
        /* Distribute the available space (e.g., 40% for image, 55% for text) */
        flex-basis: 45%; 
    }
    
    /* 3. Adjust text alignment for the text block */
    .hero-text {
        /* On desktop, remove the center alignment inherited from .hero or global styles */
        text-align: justify; 
        
    }

    /* 4. Ensure child elements of hero-text are aligned left */
    .hero h1,
    .hero h3 {
        text-align: left;
    }

    .hero p {
        /* Remove auto margins used for block centering on mobile */
        margin-left: 0;
        margin-right: 0;
    }
    
    /* 5. Prevent the entire hero section from centering text globally */
    .hero {
        text-align: left;
    }
}
/* --- Desktop Styling (1200px and Up) --- */
/* --- Desktop Styling (1200px and Up) --- */
@media (min-width: 1100px) {
    .cta-flower-decoration {
        display: block; 
        position: absolute; /* FIX 1: Positions relative to the body/page content */
        z-index: 50;   

        /* FIX 2: Anchor to the bottom-right corner of the ENTIRE PAGE */
        bottom: -35%; /* Adjust this negative value to control how much is off the bottom of the page */
        right: -100px;  /* Adjust this negative value to control how much is off the right of the page */
        
        top: auto;
        left: auto;
    }
    
    .flower-decoration-icon {
        height: 500px; 
        width: auto;
    }
}

/*Qoute Section Styles ----------------------------------------------------------------*/
#quote-section{
  background-color: #97c9cf;
  padding: var(--space-lg);
  padding-top: var(--space-2xl);
}
.quote-box {
    max-width: 800px;
    max-height: 350px;
    margin: auto;
    position: relative;
    background-color: #97c9cf; 
    padding: 8rem 1.5rem;
    border: 0.5px solid;
    width: 90%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    
    /* ... other styles ... */
}
.quote-sun {
    margin-top: var(--space-md);
    width: 50px;
    height: auto;
}
.left-flower-decoration {
    /* Hide on mobile/small screens */
    display: none; 
}

.quote-box::before {
    content: ''; 
    position: absolute;
    
    
    width: var(--space-xl); 
    height: var(--space-xl);
    top: var(--space-2xl); 
    
    left: 50%; 
    transform: translateX(-50%); 
    
    border: 1px solid #000;
    border-radius: 50%;
    background-color: #97c9cf;
}

.quote-box blockquote {
    text-align: center;
    font-size: var(--font-3xl);

}
@media (min-width: 1100px) {
    .left-flower-decoration {
        display: block; 
        position: absolute; /* Positions relative to the new positioned ancestor: #quote-section */
        z-index: 50;   

        /* Anchor to the top-left corner of the #quote-section */
        top: 20%; /* Adjust this value to control how much is off the top */
        left: -100px; /* Adjust this value to control how much is off the left */
        
        /* Mirror the image horizontally */
        transform: scaleX(-1); 
    }
    
    .left-flower-decoration .flower-decoration-icon {
        height: 500px; 
        width: auto;
    }
}
@media (max-width: 575px) {
.quote-box blockquote {
        font-size: var(--font-2xl);
    }
}
/* MEDIA QUERY - Overrides scaling on very small screens */
@media (max-width: 450px) {
    .quote-box::before {
        /* Lock the size/offset to a reasonable fixed pixel value 
           when the screen gets too small to prevent over-scaling. */
        width: var(--space-xl);
        height: var(--space-xl);
        top: var(--space-lg);
        left: 50%;
    }
    .quote-box blockquote {
        font-size: var(--font-xl);
    }
}
/*testemoni Styles ----------------------------------------------------------------*/
#testemoni {
    width: 100%;
    margin: 0 auto;
    padding: var(--space-lg) 0;
    min-width: 200px;
    background-color: var(--background3-color);
    text-align: center;
}

.carousel{
    width: 100%;
    overflow-x: auto;
    margin: 3em auto;
    display: flex;
    gap: 1em;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
   
    
}
.carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for WebKit browsers */
}

.card {
    scroll-snap-align: start;
    flex: 0 0 20em;
    aspect-ratio: 5/3;
    background-color: var(--background1-color);
    padding: 1em;
    border-radius: .5em;
    text-align: center;
    align-content: center;
}
.carousel-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.5em;
}
.carousel-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
   
}

.nav-btn {
    background: var(--background1-color);
    border: none;
    padding: 0.4em 0.8em;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: .4em;
    transition: 0.25s;
    color: var(--text-color);
}

.nav-btn:hover {
    color: var(--title-color);
}

.dots {
    display: flex;
    justify-content: center;
    gap: .4em;
    margin-top: 0.8em;
}

.dots button {
    width: .7em;
    height: .7em;
    border-radius: 50%;
    border: none;
    background: var(--text-color);
    cursor: pointer;
    transition: .3s;
}

.dots button.active {
    background: var(--title-color);
    transform: scale(1.25);
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.doctoralia-reference{
    font-size: var(--font-sm);
    margin-top: var(--space-lg);
}
@media (max-width: 600px) {
    .card {
        flex: 0 0 100%; 
    }
}
/*empzamos section Styles ----------------------------------------------------------------*/
.empezamos .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--background2-color);
    padding: var(--space-2xl) var(--space-xl);
}
#empezamos-title{
    text-align: center;
    font-size: var(--font-4xl);
    margin: var(--space-2xl) 0;
}
.begin-steps {
    width: 100%;
    margin: 0 auto;;
    min-width: 200px;
    background-color: var(--background2-color);
    text-align: center;
    max-width: 820px;
}
.begin-steps-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    max-width: 820px;
    margin-bottom: var(--space-md);
    background-color: var(--background3-color);
    padding:  var(--space-md) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: var(--font-md);
}
.begin-steps-item img {
    width: 20px;
    height: 20px;
    margin-right: var(--space-md);
}


/*placeholder Section Styles ----------------------------------------------------------------*/
.placeholder{
    width: 100%;
    margin: 0 auto;
    padding: var(--space-2xl) 0;
    min-width: 200px;
    background-color: var(--title-color);
    height: var(--space-md);
}



/*faq Section Styles ----------------------------------------------------------------*/ 
#faqs {
    background-color: var(--background1-color);
}
.faq-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--background1-color);
    padding: var(--space-2xl) var(--space-xl);
}
.faq-image-desktop{
    display: none; 
}
#faqs-titel{
    text-align: center;
    font-size: var(--font-4xl);
    
}
.faq-list {
    margin-top: var(--space-2xl);
    width: 80%;
    list-style: none; /* Recommended for clean list items */
    padding: 0;
}
.faq-question {
    display: flex;
    justify-content: space-between; /* To push the icon to the right */
    align-items: center;
    width: 100%;
    color: var(--text-color);
    text-align: left;
    padding: var(--space-md) var(--space-lg);
    border: none;
    background-color: var(--background1-color);
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    border-bottom: 3px solid var(--nav-bar-color)
}

/* 1. Create the icon (e.g., a plus sign or chevron) */
.faq-question::after {
    content: '+'; /* Use a plus sign for the closed state */
    font-size: var(--font-5xl);
    line-height: 1;
    margin-left: var(--space-md);
    transition: transform 0.3s ease; /* Smooth animation */
}

/* 2. Style for the open state (the 'is-open' class is toggled by JavaScript) */
.faq-question.is-open::after {
    content: '-'; /* Change to a dash or minus sign for the open state */
    transform: rotate(180deg); /* Rotate the icon (useful if using a chevron) */
}

/* Optional: Better styling for the answer */
.faq-answer {
    padding: var(--space-sm) var(--space-md) var(--space-md) var(--space-sm);
    background-color: var(--white-color);
    border-bottom: 1px solid var(--white-color);
    font-size: var(--font-md);
}

@media (min-width: 922px) {
    .faq-container {
        flex-direction: row; 
        align-items: stretch;
        gap: var(--space-3xl);
        padding: var(--space-2xl) 0;
        max-width: 1400px;
    }
    
    /* LEFT COLUMN: IMAGE */
    .faq-image-desktop {
        display: block; 
        flex: 1; /* Takes up 1/3 of space */
        min-width: 300px;
    }
    
    .faq-image-desktop img {
        width: 100%; 
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: var(--border-radius-md);
    }
    
    /* RIGHT COLUMN: CONTENT WRAPPER */
    .faq-content-wrapper {
        flex: 2; /* Takes up 2/3 of space */
    }
    
    #faqs-title {
        text-align: left;
        margin-bottom: var(--space-xl);
    }
    
    .faq-list {
        margin-top: 0;
        width: 100%;
    }
}
/*contact Section Styles ----------------------------------------------------------------*/

/* 1. Base Styles for the Section */
.contact {
    background-color: var(--background3-color); 
    padding: var(--space-xl) 0; 
}

/* 2. Styling the main container (The Flex Parent) */
.contact .container {
    display: flex;
    flex-direction: column; 
    gap: var(--space-xl); 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0 var(--space-md); 
   
}

/* 3. Image Styling */
.contact-image {
    width: 100%;
    height: auto;
    max-width: 600px; 
    margin: 0 auto; 
    
}

.image-wrapper {
    
    width: 100%;
    max-width: 600px; 
    margin: 0 auto;
    display: block; 
    position: relative; 
    /* NEW FIX: Add padding to the left and top of the wrapper */
    padding: 50px 0 0 50px; /* Adjust 50px to match your flower offset */
}

/* 3. Image Styling */
.contact .hero-image {
    /* Set the image to fill the new padded wrapper space */
    width: 100%; 
    height: auto;
    max-width: initial; /* Ensure no conflicting max-width */
    margin: 0; 
    display: block; 
}

/* 2. Style the absolutely positioned flower */
/* Update .flower-decoration (outside media query) */
.flower-decoration {
    position: absolute;
    z-index: 10; 
    width: 100px;  
    height: auto;

    /* FIX: Pin to the top-left corner of the wrapper (0,0 is the top-left of the padding box) */
    top: 0;     
    left: 1px;
    
    transform: rotate(45deg);
}
/* 4. Styling the Header and Contact Rows Container */
/* Styling the main content block to stack its children (header, rows) */
.contact-content-block { /* NEW CLASS: Stack the header and contact rows */
    display: flex;
    flex-direction: column; 
    gap: var(--space-md); 
    align-items:flex-start; /* Centered on mobile */
    text-align: center;
    margin: 0 auto;
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
}

#contact-title {
    font-size: var(--font-3xl);
    margin-bottom: var(--space-md);
}
/* Styling for the icon's container (the anchor tag) */
/* New Flexbox styling for the contact rows (Icon + Text) */
.contact-row {
    display: flex; 
    align-items: center; /* FIX: Align items to the top (start) to prevent icon crashing into the second line of text */
    gap: var(--space-sm); 
    /* IMPORTANT: Remove 'white-space: nowrap;' if it was there */
    /* Give the row a defined width if it's too cramped */
    width: auto; 
    max-width: initial; 
    justify-content: center;
}

/* Style for the text paragraph */
.contact-row p {
    margin: 0; 
    /* NEW: Allow the text content to grow and wrap naturally */
    flex-grow: 1; 
    line-height: 30px;
}

/* Style for the icon container */
.contact-row a {
    /* NEW: Ensures the icon element itself doesn't shrink and remains pinned to the top */
    flex-shrink: 0;
    line-height: 0; /* Prevents line height from pushing text away */
}

/* Optional: Target the anchor tags inside the paragraph to reset default link styles */
.contact-row p a {
    color: inherit; /* Inherit the color from the paragraph/parent */
    text-decoration: none; /* Remove underline, if desired */
}

/* Style for the icon */
.contact-icon {
    width: 30px; 
    height: 30px;
    fill: var(--text-color); 
    display: block;
    /* Optional: margin-right is replaced by 'gap' on the contact-row */
}

/* Style for the text paragraph */
.contact-row p {
    margin: 0; /* Remove default margin on the <p> tag to prevent extra spacing */
}


@media (min-width: 922px) {
    .contact .container {
        flex-direction: row-reverse; 
        align-items: center; 
    }

    /* Target the TWO direct children of .container */
    .contact .image-wrapper, 
    .contact .contact-content-block { 
        flex: 1; /* Makes both columns take up roughly half the space */
    }
    
    /* Re-align content block to the left */
    .contact .contact-content-block { 
        align-items: flex-start; /* Aligns H2 and rows to the left */
        text-align: left; /* Aligns text inside H2 and rows to the left */
    }

    .contact .hero-image {
        margin: initial; 
    }
}
@media (max-width: 380px) {
    .contact-row {
        flex-direction: column; /* Stacks the icon and text link vertically */
        align-items: flex-start; /* Ensures the icon and text start from the left */
        gap: var(--space-xs); /* Reduce gap for vertical stacking */
        
        /* Optional: Center the entire contact row block if desired, 
           or ensure it takes full width for better alignment */
        width: 100%; 
    }
}

/*footer section ----------------------------------------------------------------*/

/* Base Footer and Container Styles */
footer {
    background-color: var(--background3-color); /* Use your light background color variable */
    padding: var(--space-xl) var(--space-md);
    text-align: center; /* Centers the copyright text */
}

.footer-container {
    display: flex;
    flex-direction: column; /* Stack the three main div children vertically */
    align-items: center; /* Center them horizontally */
    gap: var(--space-xl); /* Space between menu, logo, and social icons */
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. Footer Links (Menu) */
.footer-links {
    display: flex;
    flex-direction: column; /* Stack the links vertically */
    gap: var(--space-sm);
    text-align: center;
}

.footer-links a {
    color: var(--text-color); /* Or a specific link color */
    text-decoration: none;
    font-size: var(--font-md);
    /* Remove the default block behavior if the anchor tags are set to display block elsewhere */
}

/* 2. Footer Logo */
.footer-logo {
    width: 80px; /* Adjust size of your central logo */
    height: auto;
}

/* 3. Social Icons */
.footer-social-icons {
    display: flex;
    gap: var(--space-lg); /* Space between the social icons */
    justify-content: center;
    align-items: center;
}

.footer-social-icons svg {
    width: 25px; /* Size of the individual icons */
    height: 25px;
    /* Optional: Add transition for hover effect */
    transition: transform 0.2s ease;
    fill: var(--text-color);
}

.footer-social-icons svg:hover {
    fill: var(--title-color);
}
.email-icon {
    /* Move the element up by 2 pixels to visually align it with the others */
    transform: translateY(-3px); 
}
/* Copyright Text (Outside footer-container) */
footer p {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Subtle line above copyright */
    font-size: var(--font-sm);
    color: var(--text-color-light);
}

@media (min-width: 922px) {
    .footer-container {
        flex-direction: row; /* Switch to horizontal layout */
        justify-content: space-between; /* Distribute space between the three main elements */
        align-items: flex-end; /* Align elements to the bottom line (important for consistency) */
        padding: 0; /* Reset internal padding if needed */
    }
    
    /* 1. Links: Keep them aligned left */
    .footer-links {
        flex-direction: column; 
        align-items: flex-start; /* Align link text to the left */
        flex: 1; /* Allows links to take up 1/3 of the space */
        text-align: left;
    }
    
    /* Change links to flow horizontally in a column */
    .footer-links a {
        padding-right: var(--space-xl); /* Optional: Increase space between links */
    }
    .footer-links a:hover {
        color: var(--title-color);
    }

    /* 2. Logo: Central Element */
    .footer-container > div:nth-child(2) {
        order: 0; /* Ensure the logo is in the middle */
        flex-grow: 0; /* Do not allow logo container to grow */
        align-self: flex-start; /* Pushes the social icons block to the top of its flex line */
        margin-bottom: var(--space-3xl);
    }
    .footer-container > div:nth-child(3) {
        order: 2; /* Ensure social icons are last */
        flex: 1; /* Allows social icons to take up 1/3 of the space */
        display: flex;
        justify-content: flex-end; /* Align social icons to the right */ 
        align-self: center;
    }
    /* 3. Social Icons: Align right */
    .footer-social-icons {
        justify-content: flex-end; /* Push icons to the right edge of their container */
        flex: 1; /* Allows social icons to take up 1/3 of the space */
    }
    .footer-social-icons img {
        width: 35px; /* Make icons bigger on desktop (e.g., from 25px to 35px) */
        height: 35px; /* Maintain aspect ratio */
    }
}
