/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
}

/* Section Styling */
.section {
    min-height: 100vh; /* Full page height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    background-color: #4a90e2;
    color: white;
}

.hero h1 {
    font-size: 3rem;
}

/* Card Section */
.scroll-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.card-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
}

.card h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: #eaeaea;
}

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

.question {
    margin-bottom: 15px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 15px;
}

.question h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.question p {
    font-size: 1rem;
}

/* Downloads Section */
.downloads h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.whatsapp-button {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Card Animation */
.card-container.scroll-visible .card {
    opacity: 1;
    transform: translateY(0);
}
