.explore-container {
            background-color: #000000;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            font-family: 'Georgia', serif;
        }

        .explore-title {
            color: #d4a574;
            font-size: 2.5rem;
            letter-spacing: 0.15em;
            margin-bottom: 60px;
            text-align: center;
        }

        .cards-wrapper {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
        }

        .adventure-card {
            width: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .adventure-card:hover {
            transform: translateY(-10px);
        }

        .card-image-box {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
        }

        .card-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .adventure-card:hover .card-image-box img {
            transform: scale(1.1);
        }

        .card-category {
            color: #d4a574;
            font-size: 1.3rem;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
            text-align: center;
        }

        .card-action-btn {
            background-color: transparent;
            color: #d4a574;
            border: 1px solid #d4a574;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .card-action-btn:hover {
            background-color: #d4a574;
            color: #000000;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .explore-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .cards-wrapper {
                gap: 40px;
            }

            .adventure-card {
                width: 100%;
                max-width: 300px;
            }
        }