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

header {
    background-color: #d4a514;
    color: white;
    padding: 20px 0;
    position: relative;
}

.logo svg {
    display: block;
    margin: 0 auto;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav a:hover {
    background-color: #fff;
    color: #d4a514;
    border-radius: 5px;
    position: relative;
}

.nav a:hover::before {
    content: "🐝";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.nav .bee-icon {
    font-size: 25px;
    margin-right: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.menu-toggle div {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 5px 0;
}

.nav-menu {
    display: flex;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #d4a514;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav a {
        display: block;
        padding: 10px;
    }
}

.header-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-top: 0;
}

.section-title {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin: 40px 0;
}

.pricing-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    text-align: left;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-content h2 {
    font-size: 28px;
    color: #d4a514;
    margin-bottom: 20px;
}

.pricing-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.feature-box {
    background-color: #fff;
    border: 2px solid #d4a514;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-box:hover {
    transform: scale(1.05);
    background-color: #fdf1c7;
}

.feature-box h3 {
    font-size: 20px;
    color: #d4a514;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    color: #555;
}

.feature-box ul {
    list-style-type: none;
    padding-left: 20px;
}

.feature-box ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-box ul li::before {
    content: "✔️";
    margin-right: 10px;
    color: #d4a514;
}

.pricing-content a {
    display: inline-block;
    background-color: #d4a514;
    color: white;
    font-size: 20px;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}

.pricing-content a:hover {
    background-color: #c79a12;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    margin-top: 50px;
}

footer p {
    margin: 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

.bee-logo {
    color: #d4a514;
    font-size: 1.2em;
    margin-right: 5px;
}

.bee-map-one {
    font-weight: bold;
    color: #7d7d7d;
}