@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Nav */
.nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    font-weight: 600;
    align-items: center;
}

.logo {
    font-size: 22px;
    letter-spacing: 1px;
}

.menu-link, .footer-link {
    color: #fff;
    text-decoration: none;
    opacity: 0.75;
    margin-right: 20px;
    transition: 0.3s;
}

.menu-link:hover, .footer-link:hover {
    opacity: 1;
}

/* Buttons */
.btn, .btn-outline {
    padding: 12px 25px;
    font-size: 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.btn {
    background: #fff;
    color: #000;
    font-weight: 700;
}

.btn-outline {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 10%;
}

.hero h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.85;
}

/* Policy Section */
.policy-content {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
}

.policy-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.policy-content h2 {
    font-size: 24px;
    margin: 25px 0 10px;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    font-size: 16px;
    opacity: 0.85;
}

.policy-content a {
    color: #fff;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.about {
    text-align: center;
    padding: 80px 10%;
    background: #111;
    border-radius: 20px;
    margin-top: 40px;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.faq-item {
    margin-bottom: 25px;
    text-align: left;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.6;
}

/* Visual Section (Phone Frame) */
.visual {
    text-align: center;
    padding: 80px 10%;
}

.phone-frame {
    width: 100%;
    max-width: 400px; /* Limit the width of the phone frame */
    height: auto;
    margin: 0 auto;
    border-radius: 40px;
    border: 2px solid #fff;
    overflow: hidden;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Ensures the image doesn't get stretched or cropped */
}

/* Contact Form Section */
.contact-form {
    text-align: center;
    padding: 80px 10%;
    background: #111;
    border-radius: 20px;
    margin-top: 40px;
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-form form {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #fff;
    background: #222;
    color: #fff;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    background: #fff;
    color: #000;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #f0f0f0;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    opacity: 0.6;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
    opacity: 0.75;
    margin-right: 20px;
    transition: 0.3s;
}

footer a:hover {
    opacity: 1;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
