/* General Reset */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
}
a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff5c5c;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    font-size: 1em;
    color: #333;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #ff5c5c;
}

/* Hero Section */
.hero {
    background-color: #ffecec;
    padding: 50px 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.5em;
    color: #ff5c5c;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-primary {
    background-color: #ff5c5c;
    color: #fff;
}
.btn-primary:hover {
    background-color: #e04a4a;
}
.btn-secondary {
    background-color: #ffffff;
    color: #ff5c5c;
    border: 1px solid #ff5c5c;
}
.btn-secondary:hover {
    background-color: #ffecec;
}

/* Features Section */
.features {
    background-color: #ffffff;
    padding: 50px 0;
    text-align: center;
}
.features h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}
.features ul {
    list-style: none;
    padding: 0;
}
.features ul li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
}

/* TikTok Section */
.tiktok-users {
    background-color: #fff7f7;
    padding: 50px 0;
    text-align: center;
}
.tiktok-users h2 {
    font-size: 2em;
    color: #ff5c5c;
    margin-bottom: 15px;
}
.tiktok-users p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
    padding: 50px 0;
}
.faq h2 {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}
.faq-item {
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
}
.faq-item h3 {
    font-size: 1.2em;
    color: #ff5c5c;
    margin-bottom: 10px;
}
.faq-item p {
    font-size: 1em;
    color: #555;
}

/* Footer */
footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    text-align: center;
}
footer p {
    font-size: 0.9em;
    color: #555;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}
footer ul li a {
    font-size: 0.9em;
    color: #555;
    transition: color 0.3s ease;
}
footer ul li a:hover {
    color: #ff5c5c;
}

