body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #FFD60A;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 30px;
}

.branding {
    display: flex;
    align-items: start;
    width: 250px; /* Fixed width if needed */
    height: 60px; /* Fixed height if needed */
  
}

.logo-container {
    display: flex;
    align-items: center;
    margin-right: 7px; /* Space between logo and company name */
   
}

.logo-image {
    width: 40px;
    height: auto;
}

.company-name-container {
    display: flex;
    align-items: center;
}

.company-name {
    line-height: 1;
    font-family: 'jomhuria', serif;
    font-weight: 400;
    font-size: 48px;
    color: #003566;
    white-space: nowrap;
}

.menu {
    margin-left: auto; /* This pushes the menu to the right */
    margin-right: 40pxs;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    
}

.menu li {
    margin-left: 20px; /* Space between menu items */
}

.menu a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    color: #003566;
    text-decoration: none;
}
.menu a:hover {
    text-decoration: underline; /* Optional: underline on hover for better interactivity */
}


/* Gap below the header */
.gap {
    height: 40px; /* Adjust gap size as needed */
}

.product-section {
    padding: 40px;
    display: flex;
}
.left-container {
    width: 60%;
    display: flex;
    flex-direction: column;
   /* border: 3px solid #FF5733;  */
}
.right-container {
    width: 40%;
    display: flex;
    align-items: center;
   /* border: 3px solid #3357FF; */
}

.product-name-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns to top */
    margin-bottom: 20px; /* Space between product name and slogan */
    
  /*  border: 3px solid #9ecaa6; */
}
.product-name {
    font-family: 'Judson', serif;
    font-size: 48px;
    font-weight: 400;
    color: #E71D36;   
    margin: 0;
}

.slogan-container {
    text-align: right;
    margin-bottom: 20px;
    /* border: 3px solid #ff33dd; */
}

.slogan {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 36px;
    color: #003566;
    text-align: center;
    font-weight: 300;
}
.empty-space {
    flex-grow: 1; /* This will make it take up remaining vertical space */
}

.product-logo {
    max-width: 50%;
    height: auto;
    display: block; /* Removes any default inline spacing */
    margin-left: 20px; /* Ensures left alignment */
    padding-left: 60px;
}

.cta-container {
    display: flex;
    justify-content: center; /* Centers the button horizontally */
    align-items: center; /* Centers the button vertically */
    padding: 20px; /* Space around the CTA */
    margin-top: 40px; /* Space above the CTA section */
}

.cta-button {
    background-color: #003566; /* Button background color */
    color: white; /* Button text color */
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    padding: 15px 30px; /* Padding for button */
    border: none; /* Removes default border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Changes cursor to pointer on hover */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.cta-button:hover {
    background-color: #0054A3; /* Darker shade on hover for better interactivity */
}

.footer {
    padding: 60px 0; /* Padding for top and bottom */
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Space between columns */
    align-items: center; /* Center items vertically */
    padding: 0 20px; /* Horizontal padding */
}

.footer-logo-image {
    max-width: 30px; /* Adjust logo size to make it smaller */
    height: auto; /* Maintain aspect ratio */
}

.footer-bottom {
    color: #003566;
    font-size: 12px;
    padding-left: 20px;
    text-align: left; /* Center text in the middle column */
    flex-grow: 1; /* Allow this section to grow and take available space */
}
.footer-bottom .email {
    margin-top: 5px; /* Adjust vertical space above the email */
    margin-bottom: 0; /* Remove any bottom margin */
}
.footer-menu {
    text-align: center; /* Align links to the right */
    padding-right: 40px;
}

.footer-menu ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.footer-menu li {
    margin-bottom: 5px; /* Space between stacked items */
}

.footer-menu a {
    text-decoration: none; /* Remove underline from links */
    color: #003566; /* Link color */
    font-size: 14px; /* Smaller font size for links */
}

.footer-menu a:hover {
    color: #FF5733; /* Change link color on hover for better interactivity */
}