/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.hero h1 {
    font-size: 2.5rem;
    color: #ff6600;
}

.hero h2 {
    font-size: 2rem;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
    color: #555;
}

/* App Links */
.app-links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.app-links li {
    margin: 10px 0;
}

.app-links a {
    display: inline-block;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff6600;
    border: 2px solid #ff6600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.app-links a:hover {
    background: #ff6600;
    color: white;
}
