body, h1, h2, h3, p, button { 
    margin-bottom: 20px;
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

header h2 {
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 30px;
}

body {
    font-family: 'Poppins', sans-serif; 
    background: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
    color: #333; 
    padding: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.2); 
    border-radius: 8px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 3rem; 
    color: #f9d423;
    margin-bottom: 30px;
}

header p {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #fff;
}

header a {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

header img {
    height: 80px;
    width: auto;
}

.gradient-text1 {
    margin-top: 20px;
}

.introduction, .features, section {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px 0;
    width: 100%;
}

.introduction, .features {
    width: 80%;
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 40px;
    margin: 40px auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.introduction p, .features p, .introduction h2, .features h3 {
    color: #fbc02d;
}

.feature, section {
    margin: 20px auto;
    width: 80%;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature:hover, section:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #f9d423; 
}

.feature p, .feature h2, section p, section h2 {
    color: #333;
}

button {
    background-color: #f9d423; 
    color: #333;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    margin-top: 10px;
}

button:hover {
    background-color: #fbc02d; 
    transform: scale(1.05); 
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 1rem;
    color: #fff;
}

@media (max-width: 768px) {
    .feature, section { 
        width: 90%; 
    }
}

.gradient-text {
    font-size: 1.5rem;
    background-image: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.gradient-text1 {
    font-size: 1.5rem;
    background-image: linear-gradient(135deg, #fff0f0 0%, #fffacd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline;
    margin-top: 20px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}




