body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}

.top-header {
    background: #1e9e47;
    color: white;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.top-header nav a:hover {
    text-decoration: underline;
}

.page-title {
    text-align: center;
    padding: 40px 20px;
    background: #e9f7ed;
}

.page-title h2 {
    color: #1e9e47;
}

 .search-box {
            background: #fff;
            width: 90%;
            max-width: 900px;
            margin: 20px auto;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 8px rgba(0,0,0,0.1);
        }

        h2 {
            text-align: center;
            color: #1e9147;
        }

        label {
            font-weight: bold;
            color: #1e9147;
        }

        input, select {
            width: 100%;
            padding: 12px;
            margin: 8px 0 18px;
            border: 1px solid #1e9147;
            border-radius: 6px;
            background: #fff;
        }

        button {
            width: 100%;
            background: #1e9147;
            border: none;
            padding: 13px;
            color: #fff;
            border-radius: 6px;
            font-size: 18px;
            cursor: pointer;
        }

        button:hover {
            background: #157b38;
        }

        .partners {
            width: 90%;
            max-width: 1000px;
            margin: 30px auto;
        }

        .partner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .partner-card {
            background: #fff;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            color: #1e9147;
            border: 1px solid #1e9147;
        }

        .ticket-types {
            width: 90%;
            max-width: 1000px;
            margin: 40px auto;
        }

        .ticket-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .ticket {
            background: #fff;
            padding: 20px;
            border-radius: 14px;
            border: 1px solid #1e9147;
            text-align: center;
        }

        .ticket h3 {
            color: #157b38;
        }

        .rating {
            font-size: 22px;
            margin: 10px 0;
        }

        footer {
            background: #1e9147;
            color: #fff;
            text-align: center;
            padding: 15px;
            margin-top: 40px;
        }
.partners {
    padding: 40px;
    text-align: center;
}

.partners h3 {
    color: #1e9e47;
    margin-bottom: 20px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.partner-card {
    background: white;
    border: 2px solid #1e9e47;
    border-radius: 12px;
    padding-bottom: 15px;
}

.partner-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    padding-top: 10px;
}

.partner-card h4 {
    color: #1e9e47;
}

.classes {
    background: #e9f7ed;
    padding: 40px;
    text-align: center;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.class-card {
    background: white;
    border: 2px solid #1e9e47;
    border-radius: 12px;
    padding-bottom: 20px;
}

.class-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.class-card h3 {
    color: #1e9e47;
}

.class-card ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.class-card ul li {
    margin: 6px 0;
    font-size: 14px;
}

.class-card button {
    margin-top: 10px;
    background: #1e9e47;
    color: white;
    border: none;
    padding: 10px;
    width: 80%;
    border-radius: 6px;
    cursor: pointer;
}

.class-card button:hover {
    background: #187c38;
}
