/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #0b1e3f;
    color: white;
}
a {
    color: inherit;
    text-decoration: none;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    text-align: left;
    background: linear-gradient(to right, #002147, #004080);
}
.hero-content {
    max-width: 50%;
}
.logo {
    width: 150px;
}
h1 {
    font-size: 40px;
    color: #FFD700;
}
h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.download-btn {
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.download-btn:hover {
    background-color: #218838;
}
.hero-image img {
    width: 400px;
}

/* How It Works */
.how-it-works {
    text-align: center;
    padding: 50px;
}
.steps {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
}
.step {
    max-width: 250px;
    margin: 20px;
}
h3 {
    font-size: 22px;
    color: #FFD700;
    margin-bottom: 10px;
}
p {
    font-size: 16px;
}

/* Brand Styling */
.brand {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(to right, #6b0505, #101010);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}
.highlight {
    color: #ffc600;
}

/* Phone Display Section */
#phone-display {
    background: linear-gradient(to bottom, #072ac8, #1e96fc);
    padding: 50px 0;
    text-align: center;
    color: white;
}
#phone-display h2 {
    color: #fcf300;
    font-size: 28px;
    margin-bottom: 10px;
}
#phone-display p {
    font-size: 18px;
    color: #a2d6f9;
    margin-bottom: 20px;
}
.phone-mockup img {
    max-width: 100%;
    height: auto;
}
.app-buttons {
    margin-top: 20px;
}
.app-download {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    margin: 10px;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.app-download.ios {
    background: #fcf300;
    color: #072ac8;
}
.app-download.ios:hover {
    background: #e0c200;
}
.app-download.android {
    background: #ffc600;
    color: #072ac8;
}
.app-download.android:hover {
    background: #e6b800;
}

/* Customer Reviews */
#customer-reviews {
    background: #f5f5f5;
    padding: 50px 0;
    text-align: center;
    color: #333;
}
#customer-reviews .highlight {
    color: #072ac8;
    font-weight: bold;
}
.reviews {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.review-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
}
.review-header {
    background: #072ac8;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px;
}
.review-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 15px 0;
}
.review-card h3 {
    margin: 10px 0;
    color: #072ac8;
}
.review-card p {
    font-size: 14px;
    color: #555;
}

/* Footer */
#footer {
    background: #0c0c0c;
    color: white;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    position: relative;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-section {
    flex: 1;
    min-width: 220px;
}
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin: 5px 0;
}
.footer-section ul li a {
    color: #a2d6f9;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: #ffc600;
}
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.social-icons img {
    width: 30px;
    transition: transform 0.3s ease;
}
.social-icons img:hover {
    transform: scale(1.1);
}
.footer-section iframe {
    border: 0;
}
.footer-bottom {
    text-align: center;
    margin-top: 30px;
}
.disclaimer {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}
.whatsapp-button:hover {
    background: #1ebc5a;
}
.whatsapp-button img {
    width: 24px;
    margin-right: 8px;
}

/* Contact Us Form */
.contact-us {
    background: #f5f5f5;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}
.contact-us .container {
    max-width: 600px;
    margin: 0 auto;
}
.contact-form {
    display: flex;
    flex-direction: column;
}
.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.form-checkbox input {
    margin-right: 10px;
}
.form-checkbox a {
    color: #072ac8;
    text-decoration: none;
}
.form-checkbox a:hover {
    text-decoration: underline;
}
.submit-btn {
    background-color: #28a745;
    color: white;
    padding: 12px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.submit-btn:hover {
    background-color: #218838;
}

/* Legal Pages (Privacy Policy & Terms) */
.privacy-policy,
.terms-conditions {
    background: #ffffff;
    color: #333;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}
.privacy-policy .container,
.terms-conditions .container {
    max-width: 800px;
    margin: 0 auto;
}
.privacy-policy h1,
.terms-conditions h1,
.privacy-policy h2,
.terms-conditions h2 {
    color: #072ac8;
    margin-bottom: 20px;
}
.privacy-policy p,
.terms-conditions p,
.privacy-policy ul,
.terms-conditions ul {
    margin-bottom: 20px;
    line-height: 1.6;
}
.privacy-policy ul,
.terms-conditions ul {
    list-style-type: disc;
    padding-left: 20px;
}
.privacy-policy a,
.terms-conditions a {
    color: #072ac8;
    text-decoration: none;
}
.privacy-policy a:hover,
.terms-conditions a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-content, .hero-image {
        max-width: 100%;
    }
    .hero-image img {
        width: 300px;
    }
    .steps {
        flex-direction: column;
        align-items: center;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        max-width: 100%;
    }
    .review-card {
        width: 100%;
    }
}