body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.navbar {
    background-color: #2c3e50;
    padding: 20px 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.navbar ul li {
    margin: 0 20px;
}
.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.navbar ul li a:hover {
    color: #3498db;
}
.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hamburger:hover {
    color: #3498db;
}
.main-content {
    margin-top: 80px;
    text-align: center;
    padding: 20px;
}
.business-card img {
    width: 66%;
    height: auto;
}
.section {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.section.active {
    display: block;
}
.content-item {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.content-item p {
    margin-bottom: 15px;
}
.form-field {
    margin-bottom: 15px;
    text-align: left;
}
.form-field label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-field input[type="checkbox"] {
    margin-right: 5px;
}
.form-field textarea {
    height: 100px;
}
.save-btn {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.save-btn:hover {
    background-color: #2980b9;
}
.success-message {
    color: green;
    margin-bottom: 15px;
}
.footer-nav {
    background-color: #2c3e50;
    padding: 10px 0;
    text-align: center;
}
.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer-nav ul li {
    margin: 0;
}
.footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}
.footer-nav ul li a:hover {
    color: #3498db;
    text-decoration: underline;
}
.footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 0;
    width: 100%;
}
.footer a {
    color: #3498db;
    text-decoration: none;
}
.footer a:hover {
    color: #2980b9;
    text-decoration: underline;
}
.footer p {
    margin: 5px 0;
}
@media (max-width: 768px) {
    .navbar {
        padding: 30px 15px; /* Increased top/bottom padding to fully contain the 60px icon */
    }
    .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px; /* Adjusted to account for taller navbar (30px top + 30px bottom + content) */
        left: 0;
        width: 100%;
        background-color: #2c3e50;
    }
    .navbar ul.active {
        display: flex;
    }
    .navbar ul li {
        margin: 10px 0;
        text-align: center;
    }
    .hamburger {
        display: block;
        position: absolute;
        left: 15px;
        top: 10px; /* Adjusted to bring closer to the top */
        font-size: 30px;
    }
    .main-content {
        margin-top: 100px; /* Adjusted to account for taller navbar (30px top + 30px bottom + content) */
    }
    .business-card img {
        width: 100%;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}