.pera1-editable {
    color :#000 !important;
}

.theme-custom .p-premium-faq__icon--a {
    color :#000 !important;
}
/* Hero section styles */
.dazn-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Hero image styles */
.dazn-hero-image {
    width: 100%; /* Image scales with the width of the viewport */
    height: auto; /* Maintain aspect ratio */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Place the image behind the content */
}

/* Hero content styles */
.dazn-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #fff;
}

.dazn-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Button styling */
.dazn-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #ffc107; /* Yellow color */
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.dazn-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.p-header-nav-floating-btn--fixed--img-large .navigationHeader .p-header__logo img {
    max-height: 120px !Important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dazn-hero-content h1 {
        font-size: 2rem;
    }
    .dazn-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .p-header-nav-floating-btn--fixed--img-large .navigationHeader .p-header__logo img {
        max-height: 120px !Important;
    }
}

@media (max-width: 480px) {
    .dazn-hero-content h1 {
        font-size: 1.5rem;
    }
    .dazn-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .p-header-nav-floating-btn--fixed--img-large .navigationHeader .p-header__logo img {
        max-height: 80px  !Important;
    }
}