        /* CSS Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Mulish', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .navbar {
            background: #d9d9d9;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo span {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 400;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #666;
        }

        .nav-btn {
            background: #333;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }

        .nav-btn:hover {
            background: #555;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            background: #d9d9d9;
            padding: 4rem 0;
            position: relative;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #666;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #333;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }

        .btn-primary:hover {
            background: #555;
        }

        .btn-secondary {
            background: transparent;
            color: #333;
            padding: 0.75rem 1.5rem;
            border: 2px solid #333;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: #333;
            color: white;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .photo-placeholder {
            background: #000;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 600;
            border-radius: 10px;
        }

        #photo1 {
            width: 571px;
            height: 562px;
            max-width: 100%;
            background-color: transparent;
        }

        #photo2 {
            width: 100%;
            max-width: 1183px;
            height: 802px;
            margin: 2rem 0;
            background-color: transparent;
        }

        #photo3 {
            width: 760px;
            height: 636px;
            max-width: 100%;
            background-color: transparent;
        }

        .hero-notification {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background: #e8f5e8;
            border: 1px solid #10B981;
            border-radius: 10px;
            padding: 1rem;
            max-width: 300px;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .notification-content {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .notification-text p {
            font-size: 0.9rem;
            margin: 0;
        }

        .notification-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }

        /* Conference Section */
        .conference-section {
            background: white;
            padding: 4rem 0;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .section-header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .learn-more-btn {
            background: #10B981;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }

        .learn-more-btn:hover {
            background: #059669;
        }

        .conference-image {
            text-align: center;
            margin: 3rem 0;
        }

        .conference-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
        }

        .feature-icon {
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-text p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Business Section */
        .business-section {
            background: white;
            padding: 4rem 0;
        }

        .business-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .business-text h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .business-text p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .business-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .rating {
            display: flex;
            align-items: center;
        }

        .stars {
            color: #FFD700;
            font-size: 1.5rem;
        }

        /* Footer */
        .footer {
            background: white;
            border-top: 1px solid #e5e5e5;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo span {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
        }

        .footer-column h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

        .footer-column ul li a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #333;
        }

        .footer-column p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid #e5e5e5;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal p {
            color: #666;
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #f5f5f5;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .social-icon:hover {
            background: #e5e5e5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: #d9d9d9;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
                gap: 1rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            #photo1 {
                width: 100%;
                max-width: 571px;
                height: auto;
                aspect-ratio: 571/562;
                background-color: transparent;
            }

            #photo2 {
                height: auto;
                aspect-ratio: 1183/802;
            }

            #photo3 {
                width: 100%;
                height: auto;
                aspect-ratio: 760/636;
                background-color: transparent;
            }

            .hero-notification {
                position: static;
                margin: 2rem auto 0;
                max-width: 90%;
            }

            .business-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .business-text h2 {
                font-size: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .conference-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .business-text h2 {
                font-size: 1.8rem;
            }

            .hero-buttons,
            .business-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 200px;
                text-align: center;
            }
        }

        /* Desktop Large Screens */
        @media (min-width: 1400px) {
            .container,
            .nav-container,
            .hero-container {
                max-width: 1400px;
            }
        }

        /* Fix for overflowing images */
.photo-placeholder {
    overflow: hidden;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
