/* Global styles */
body {
    background-color: #f5f8fa;
    color: #333;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: #1da1f2;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links li a:hover {
    color: #1da1f2;
    transform: translateY(-2px);
}

.nav-links li a.active {
    color: #1da1f2;
    font-weight: bold;
}

.nav-links li a i {
    margin-right: 8px;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #1da1f2;
    color: #fff;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fff;
    color: #1da1f2;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background-color: #e1e8ed;
    transform: scale(1.05);
}

.cta-btn i {
    margin-right: 8px;
}

/* Services section */
.services {
    padding: 40px 20px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.category-card i {
    font-size: 40px;
    color: #1da1f2;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 16px;
    color: #657786;
}

.service-details {
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #657786;
    margin-bottom: 10px;
}

.service-item .price {
    font-weight: bold;
    color: #1da1f2;
}

.pay-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1da1f2;
    color: #fff;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pay-btn:hover {
    background-color: #0c85d0;
    transform: scale(1.05);
}

.pay-btn i {
    margin-right: 8px;
}

/* Terms and Privacy pages */
.terms, .privacy {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.terms h2, .privacy h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.terms-content, .policy-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.terms-content h3, .policy-content h3 {
    font-size: 20px;
    margin: 20px 0 10px;
}

.terms-content p, .policy-content p {
    font-size: 16px;
    color: #657786;
    margin-bottom: 15px;
}

.terms-content ul, .policy-content ul {
    margin: 10px 0 20px 20px;
}

.terms-content ul li, .policy-content ul li {
    font-size: 16px;
    color: #657786;
    margin-bottom: 10px;
}

/* Payment info page */
.payment-info {
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.payment-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.payment-info p {
    font-size: 16px;
    color: #657786;
    margin-bottom: 20px;
}

.payment-info .chitchat-number {
    font-weight: bold;
    color: #1da1f2;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1da1f2;
    color: #fff;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
    background-color: #0c85d0;
    transform: scale(1.05);
}

.download-btn i {
    margin-right: 8px;
}

/* Footer */
footer {
    background-color: #fff;
    border-top: 1px solid #e1e8ed;
    padding: 20px;
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    color: #657786;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 16px;
    color: #657786;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: #1da1f2;
    transform: translateY(-2px);
}

.social-links a i {
    margin-right: 8px;
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .services h2 {
        font-size: 28px;
    }

    .category-card {
        padding: 15px;
    }

    .category-card i {
        font-size: 30px;
    }

    .terms h2, .privacy h2 {
        font-size: 28px;
    }
}
.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}
