body {
            font-family: 'Comic Sans MS', 'Arial', sans-serif;
            background: linear-gradient(135deg, #FFF9E6 0%, #FFE082 100%);
            overflow-x: hidden;
        }

        .header {
            background: linear-gradient(135deg, #18887f81 0%, #FFC107 100%);
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255,255,255,0.1) 10px,
                rgba(255,255,255,0.1) 20px
            );
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .logo {
            font-size: 2.5em;
            font-weight: bold;
            color: #FF6F00;
            text-shadow: 3px 3px 0 #000;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .bee-icon {
            width: 60px;
            height: 60px;
            background: #FFD54F;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #FF6F00;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: bold;
            padding: 10px 20px;
            background: rgba(255,255,255,0.5);
            border-radius: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
         nav a:hover {
            background: #FF6F00;
        }
        


        .hero {
            text-align: center;
            padding: 80px 20px;
            backgrou*nd: linear-gradient(180deg, rgba(255,235,59,0.3) 0%, transparent 100%);
            position: relative;
        }

        .hero h1 {
            font-size: 4em;
            color: #FF6F00;
            text-shadow: 4px 4px 0 #000;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.8em;
            color: #FF8F00;
            font-weight: bold;
            margin-bottom: 40px;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
            color: yellow;
            font-size: 1.5em;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(255,111,0,0.4);
            border: 4px solid #000;
        }

        .cta-button:hover {
            box-shadow: 0 12px 35px rgba(255,111,0,0.6);
            color: #FF6F00;
            background: #FF6F00;
        }

        .features {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 5px solid #FFD54F;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,213,79,0.2) 0%, transparent 70%);
        }

        .feature-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .feature-icon {
            font-size: 4em;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .feature-card h3 {
            font-size: 1.8em;
            color: #FF6F00;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            font-size: 1.2em;
            color: #666;
            position: relative;
            z-index: 1;
        }

        .honeycomb-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.05;
            z-index: 0;
        }

        .footer {
            background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
            padding: 40px 20px;
            text-align: center;
            margin-top: 80px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        }

        .footer p {
            font-size: 1.3em;
            color: #FF6F00;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .contact-info {
            font-size: 1.2em;
            color: #FF8F00;
            margin: 10px 0;
        }

        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 20px;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero h1 {
                font-size: 2.5em;
            }

            .hero p {
                font-size: 1.3em;
            }
        }