/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    font-size: 1.3em;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

/* Header Styling */
header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    margin: 0;
}

/* Header Content Styling */
.header-content {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: center; /* center items horizontally */
    width: 100%;
    font-size: .8em;
}

/* Logo Styling */
.header-logo {
    width: 310px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    margin-right: 10px; /* Space between logo and title */
    flex-shrink: 0;
}

/* Title Styling */
.header-title {
    margin: 0; /* Remove default margin */
    /* Add more styling as needed */
}

/* Navigation Menu Styling */
.desktop-nav ul {
    padding: 0;
    list-style: none;
    background: #444;
    text-align: center;
    display: flex; /* Display the links in a row */
    flex-direction: row; /* Display links as a column on desktop */
    justify-content: center;
}

.desktop-nav ul li {
    display: inline;
    margin-right: 20px; /* Add horizontal margin between links */
}

.desktop-nav ul li:last-child {
    margin-right: 0; 
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 15px 20px;
}

.desktop-nav ul li a:hover {
    background: #555;
}

/* Section Styling */
section {
    padding: 40px;
}

/* Footer Styling */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Pricing Section Styling */
.pricing-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pricing-main, .pricing-addons {
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    width: 300px; /* Adjust width as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds subtle shadow for depth */
}

.pricing-main {
    background-color: #1E90FF; /* Blue background */
    color: white; /* White text for better contrast */
}

.pricing-addons {
    background-color: #f5f5f5; /* Light background for add-ons */
    color: #333; /* Dark text color */
}

/* Get Started Button Styling */
.get-started {
    display: flex;
    justify-content:center;
    margin-top: 20px; /* Adjust as needed */
    margin-bottom: 20px;
}

.hamburger-menu {
    display: none; /* Hide the hamburger menu by default */
}

.mobile-nav {
    display: none; /* Hide the mobile menu by default */
}

/* Media query for screens with a maximum width of 768px (typical mobile screens) */
@media screen and (max-width: 768px) {
    /* Display the logo on the left side of the screen */
       .header-content {
        justify-content: flex-start;
    }
    /* Adjust the margin-right for the logo to create space */
    .header-logo {
        margin-right: 5px; /* Adjust as needed */
    }

    /* Display the hamburger menu when the screen width is less than or equal to 768px */
    .hamburger-menu {
        display: block;
        cursor: pointer;
    }
    /* Hamburger Menu Styling */
    .hamburger-icon {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px 0;
    }
    .desktop-nav {
        display: none;
    }   
    .mobile-nav {
        display: none; /* Hide the mobile menu by default */
    }

    /* Styles for active mobile navigation */
    .mobile-nav.active {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center vertically */
        align-items: center; /* Center horizontally */
        background-color: #333; /* Background color for the menu */
        position: fixed; /* Fixes the menu in place */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999; /* Ensures the menu is on top of other content */
    }

    .mobile-nav.active ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

    .mobile-nav.active li {
        margin: 10px 0; /* Add vertical spacing between menu items */
    }

    .mobile-nav.active a {
        text-decoration: none;
        color: #fff; /* Text color for menu items */
        font-size: 1.5em; /* Adjust the font size */
        display: block;
    }

    /* Keep the hamburger icon visible */
    .hamburger-icon {
        display: block;
        position: absolute;
        top: 20px; /* Adjust the position as needed */
        right: 20px; /* Adjust the position as needed */
        z-index: 1000; /* Ensure the icon is above the mobile navigation menu */
        background-color: transparent; /* Set the background color to transparent */
    }

    /* Style for the bars in the hamburger icon */
    .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px 0;
    }

    /* Add hover effect for menu items if desired */
    .mobile-nav.active a:hover {
        background-color: #555;
    }
    
    /* Hide the desktop navigation menu on mobile screens */
    .desktop-nav {
        display: none;
    }
}