/* Start custom CSS for html, class: .elementor-element-f3e6df1 */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
        }

        /* Header Styles */
        .header {
            background-color: #0077b6;
            color: white;
            text-align: center;
            padding: 20px 0;
        }

        .header h1 {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        /* Hero Section */
        .hero {
            display: flex;
            flex-wrap: wrap;
            padding: 40px 20px;
            background-color: #eee;
        }

        .hero-content {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        .hero-image {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 8px;
        }

        .dates {
            color: #d4a017;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .hero-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .hero-content h2 span {
            color: #d4a017;
        }

        .hero-content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            padding: 12px 20px;
            margin: 10px 0;
            width: 100%;
            text-align: center;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-gold {
            background-color: #d4a017;
            color: white;
        }

        .btn-outline {
            background-color: white;
            color: #333;
            border: 2px solid #d4a017;
        }

        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Tabs Section */
        .tabs-container {
            background-color: #fff2b2;
            padding: 20px 0;
        }

        .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .tab {
            padding: 15px 30px;
            background-color: #d4a017;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .tab:hover {
            background-color: #b38613;
        }

        .tab.active {
            background-color: #b38613;
        }

        .tab-content {
            display: none;
            margin: 0 auto;
            max-width: 1200px;
            padding: 20px;
        }

        .tab-content.active {
            display: flex;
        }

        .tab-text {
            flex: 1;
            padding: 20px;
        }

        .tab-image {
            flex: 1;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .tab-image img {
            max-width: 100%;
            border-radius: 8px;
        }

        /* Activities Section */
        .activities {
            padding: 40px 20px;
            background-color: #fff2b2;
        }

        .activities h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .activities p {
            margin-bottom: 20px;
            line-height: 1.6;
            max-width: 800px;
        }

        /* Schedule Section */
        .schedule {
            padding: 40px 20px;
            background-color: #f5f5f5;
            display: flex;
            flex-wrap: wrap;
        }

        .schedule-content {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        .schedule-image {
            flex: 2;
            min-width: 300px;
            padding: 20px;
        }

        .schedule h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .schedule h2 span {
            color: #d4a017;
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .schedule-table th, .schedule-table td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: left;
        }

        .schedule-table th {
            background-color: #0077b6;
            color: white;
        }

        .schedule-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        /* Program Overview */
        .program-overview {
            padding: 40px 20px;
            background-color: #fff;
            text-align: center;
        }

        .program-overview h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
        }

        .columns {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .column {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin: 10px;
        }

        .column h3 {
            border-bottom: 2px solid #0077b6;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .column ul {
            list-style-position: inside;
            text-align: left;
            margin-bottom: 20px;
        }

        .column ul li {
            margin-bottom: 10px;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding: 5px 0;
            border-bottom: 1px solid #eee;
        }

        /* Footer */
        .footer {
            background-color: #0077b6;
            color: white;
            text-align: center;
            padding: 40px 20px;
        }

        .footer h2 {
            margin-bottom: 20px;
        }

        .footer p {
            margin-bottom: 20px;
        }

        .footer .btn {
            max-width: 200px;
            margin: 0 auto;
            display: block;
        }

        /* Group Image */
        .group-image {
            width: 100%;
            margin-top: 20px;
        }

        .group-image img {
            width: 100%;
            max-height: 350px;
            object-fit: cover;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .hero-content, .hero-image {
                flex: 100%;
            }

            .tabs {
                flex-direction: column;
                align-items: center;
            }

            .tab {
                width: 100%;
                max-width: 300px;
                margin-bottom: 5px;
            }

            .tab-content.active {
                flex-direction: column;
            }

            .schedule-content, .schedule-image {
                flex: 100%;
            }
        }
    </style>/* End custom CSS */