html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #2e665b; /* The background color from the image */
    font-family: 'Arial', sans-serif;
}
.container-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 10px; /* 10px padding to the left and right */
    height: 100%;
    width: 100%;
}
.column-footer {
    width: 33.333%; /* Three columns of equal width */
    color: #ffffff; /* Assuming white text as in the image */
    padding: 25px;
    /*flex: 1; /* Each column will take up equal space */
    
}

.column-grid {
    color: #ffffff; /* Assuming white text as in the image */
    flex: 1; /* Each column will take up equal space */
    
}



.column-footer p {
    font-size: 1em; /* Adjust paragraph font size if necessary */
    line-height: 1.6; /* Adjust line height for better readability */
  }


  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Adjust the gap between icon and text */
}

.contact-text {
    font-size: 1em;
    line-height: 1.6;
}


.container-grid {
    /*text-align: center;
    padding: 50px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;

}

.container-grid .column-footer {
    flex: 1;
    margin: 0 20px; /* Spacing between the columns */
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between social icons */
}

.social-icons a {
    display: inline-block;
    width: 24px; /* Assuming icon size */
    height: 24px; /* Assuming icon size */
    /*background-size: cover;
    /*background-repeat: no-repeat;*/
    margin-left: 0.5em; /* Smaller margin on smaller screens */
    margin-right: 0.5em;
}

#youtube-icon {
    background-image: url('/newassets/images/youtube24x24.svg');
}

#facebook-icon {
    background-image: url('/newassets/images/facebook24x24.svg');
}

#instagram-icon {
    background-image: url('/newassets/images/instagram24x24.svg');
}

#x-icon {
    background-image: url('/newassets/images/brand-x.svg');
}

.rodnavarro-title-footer{
    color: #F2A922;
    font-size: 2em;
  }



  @media (max-width: 768px) {
    .container-footer {
        flex-direction: column;
        padding: 0 5px; /* Reduced padding */
    }
    .column-footer {
        width: 100%;
        padding: 20px 10px; /* More padding inside the column to keep content from touching the edges too closely */
        margin-bottom: 20px; /* Spacing between rows for mobile */
    }


    .container-grid {
        flex-direction: column;
        padding: 60px 10px; /* Adjusted padding for better edge alignment */
        align-items: flex-start;
    }

    .container-grid .column-grid {
        text-align: left; /* Ensures text within the column is aligned to the left */
        width: 100%; /* Takes full width to use all available space */
        padding: 0; /* Removes any padding that might offset the alignment */
    }

    .social-icons {
        margin-top: 20px; /* Additional spacing when stacked on mobile */
        /*flex-direction: row; /* Ensure icons are in a row */
        flex-direction: row; /* Ensures icons are in a row */
        justify-content: space-around; /* Adjusts icons distribution on smaller screens */
    }

    div, .column-grid, .social-icons, a{
        align-items: flex-start;
        justify-content: flex-start; /* Aligns social icons to the left */
    }
 

  
    .social-icons a {
        width: 50px; /* Slightly smaller icons on smaller screens */
        height: 50px;
        margin-left: 0.25em; /* Smaller margin on smaller screens */
        margin-right: 0.25em;
    }

 
}

