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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.content-section {
    padding: 50px 20px;
    text-align: center;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1rem;
    color: #555;
}


.download-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.download-buttons {
    margin-top: 20px;
}

.store-badge {
    width: 160px;
    margin: 10px;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

.footer {
    background-color: #000;
    color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-column h2 {
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
}

.footer-column h3 {
    color: #f6e8b1;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: normal;
}

.footer .icon {
    color: red;
    margin-right: 8px;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 10px 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .overlay-text h1 {
        font-size: 2rem;
    }

    .overlay-text p {
        font-size: 1rem;
    }
}