.container {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.green-digital-campaign,
.digital-menu-campaign,
.brand-section {
    text-align: center;
    margin-bottom: 40px;
}

.green-digital-campaign p,
.digital-menu-campaign p,
.brand-section p {
    margin: 0 0 10px;
    color: #333;
}

/* Read More Button */
.read-more-btn {
    background-color: #ff9800;
    color: #fff;
    font-size: 14px; /* Smaller font size */
    padding: 8px 16px; /* Smaller padding */
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    display: block; /* Block display to stack vertically */
    width: auto;
    margin: 10px auto; /* Center and space between buttons */
}

.read-more-btn:hover {
    background-color: #e68900;
}

/* Signup Button */
.signup-btn {
    background-color: #4CAF50;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    display: block; /* Block display to stack vertically */
    width: auto;
    margin: 10px auto; /* Center and space between buttons */
}

.signup-btn:hover {
    background-color: #45a049;
}

/* Remove underline */
.signup-btn-link {
    text-decoration: none;
}

a button {
    text-decoration: none;
}

@media (max-width: 600px) {
    .container {
        width: 100%;
        margin: 20px auto;
        padding: 10px;
    }

    .signup-btn {
        font-size: 14px;
    }

    .read-more-btn {
        font-size: 12px; /* Even smaller font size for mobile */
        padding: 6px 12px; /* Even smaller padding for mobile */
    }
}









html {
    font-size: 20px; /* Default size; 1rem = 16px */
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Sets a light background color for the whole page */
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #b0daeb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Ensure elements don't wrap to new lines */
}

.logo {
    height: 40px; /* Adjust as needed */
    margin-right: 10px;
}

.header-content img {
    height: 40px; /* Adjusts the height of the image */
    width: auto; /* Maintains the aspect ratio of the image */
    border-radius: 5px; /* Optional: adds rounded corners to the image */
    margin-right: 10px; /* Adds spacing to the right of the image */
}

.business-name {
    font-size: 1.5rem; /* Adjusted for responsiveness */
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    flex-grow: 1;
    margin-right: 20px; /* Add margin to avoid overlapping the logo */
    animation: slide-in 15s infinite;
}

.menu-button {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    margin-left: 10px;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: black;
    margin: 1px 0; /* Add small margin between bars */
}

.menu {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    left: 0;
    top: 60px; /* Adjust based on your header's height */
    z-index: 1000;
}

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

.menu li {
    padding: 10px 20px;
    background-color: #f4f4f4; /* Default background */
    border-bottom: 1px solid #ddd; /* Adds a separator */
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    html {
        font-size: 18px; /* Smaller base size for tablets */
    }

    .header-content {
        flex-direction: row;
        align-items: center;
    }

    .logo {
        height: 30px;
        margin-right: 10px;
    }

    .business-name {
        font-size: 1.2rem;
        margin: 0 auto;
        text-align: center;
        flex-grow: 1;
        white-space: nowrap;
        overflow: hidden;
    }

    .menu-button {
        display: flex;
        margin-left: 10px;
    }

    .menu {
        display: none;
        position: absolute;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        left: 0;
        top: 60px;
        z-index: 1000;
    }

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

    .menu li {
        padding: 10px 20px;
        background-color: #f4f4f4;
        border-bottom: 1px solid #ddd;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 16px; /* Even smaller base size for mobile phones */
    }

    .business-name {
        font-size: 1rem;
    }
}

/* Color for each item */
.product a { color: rgb(18, 18, 218); }
.price a { color: rgb(52, 230, 52); }
.contact a { color: rgb(242, 48, 48); }
.signin a { color: orange; }

/* Hover effects for menu items */
.menu li a:hover {
    color: #fff;
    background-color: #666;
}

/* Animation for sliding in the menu */
.menu.slide-in {
    display: block;
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slide-in {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Define colors and hover effects for each list item */
.product a, .price a, .contact a, .signin a {
    transition: color 0.3s; /* Smooth color transition */
}

.product a { color: rgb(18, 18, 218); }
.price a { color: rgb(52, 230, 52); }
.contact a { color: rgb(242, 48, 48); }
.signin a { color: orange; }

.product a:hover { color: darkblue; }
.price a:hover { color: darkgreen; }
.contact a:hover { color: darkred; }
.signin a:hover { color: darkorange; }

#signup-button {
    background-color: #4CAF50; /* Green background */
    border: none;
    color: white;
    margin: 40px 0;
    padding: 15px 32px; /* Add padding to the button */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 20px; /* Add margin to create space around the button */
    cursor: pointer;
    border-radius: 5px; /* Add rounded corners */
    transition: background-color 0.3s; /* Add smooth transition */
}

/* Button hover effect */
#signup-button:hover {
    background-color: #1c431e; /* Darker green when hovered */
}

/* Mobile-friendly styles */
@media only screen and (max-width: 600px) {
    /* Adjust button padding for smaller screens */
    #signup-button {
        padding: 10px 20px;
        font-size: 18px;
        margin: 80px 0;
        margin-left: auto;
        margin-right: auto;
    }

    /* Adjust font size for smaller screens */
    .header-content {
        font-size: 25px;
    }

    .business-name {
        font-size: 18px;
        margin-left: 0; /* Remove margin on mobile */
    }

    .green-digital-campaign p {
        font-size: 16px;
    }

    .logo {
        max-width: 90%; /* Adjust logo size for mobile */
        margin: 10px 0;
    }

    .menu-button {
        width: 25px;
        height: 18px;
    }

    .menu-button .bar {
        height: 2px;
    }
}

#campaign-description {
    text-align: center;
    margin-bottom: 20px;
}

#additional-content {
    margin-top: 0px;
}

#read-more-button {
    padding: 5px 10px;
    background-color: #3f423f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    float: right;
}
#read-more-button:hover {
    background-color: #c7eac9;
}

.green-digital-campaign {
    background-color: #e8f5e9; /* Light green background */
    padding: 20px; /* Padding inside the section */
    font-size: 25px;
    margin:  0; /* Margin outside the section */
    border-radius: 10px; /* Rounded corners */
    text-align: center;
}

/* Additional styles for better presentation */
#additional-content {
    display: none; /* Keep additional content hidden initially */
}

button {
    background-color: #4CAF50; /* Green background for buttons */
    color: white; /* White text color */
    padding: 10px 20px; /* Padding inside buttons */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners for buttons */
    cursor: pointer; /* Pointer cursor on hover */
    margin-top: 10px; /* Margin above the buttons */
}

