/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
}

h1, h2, h3, p {
    text-align: left;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    text-align: left;
    padding: 100px 20px;
    background: linear-gradient(45deg, #f5a623, #ff5733);
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.highlight {
    font-size: 1.2rem;
    color: #ffd700;
}

.button-container {
    margin-top: 20px;
}

.button {
    padding: 15px 40px;
    margin: 10px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
}

.apple-btn {
    background-color: #333;
}

.play-btn {
    background-color: #34b7f1;
}

/* Hidden Box Image */
.hidden-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden-box img {
    width: 80%;
    display: none;
}

/* Privacy Policy Content Section */
.policy-content {
    background-color: #222;
    padding: 40px 20px;
    text-align: left; /* Ensure all text in the policy section is left-aligned */
}

.policy-content h2, .policy-content h3, .policy-content p {
    text-align: left;
}

.policy-content h2 {
    margin-bottom: 30px;
    color: #ffd700;
}

.policy-content h3 {
    margin-top: 20px;
    color: #fff;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

/* Footer Section */
.footer {
    background-color: #121212;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.footer .social-links a {
    text-decoration: none;
    color: #fff;
    margin: 0 15px;
    font-size: 1.2rem;
}