                                                                                                                                                    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: white;
}

/* Logo image sizing */
.logo img {
    display: block;
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.8;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #667eea;
    color: white;
}

.btn-secondary {
    background-color: #667eea;
    color: white;
}

.btn-primary:hover {
    background-color: #e1e2e7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Sections */
.info-section,
.warning-section,
.content-section {
    padding: 60px 0;
    background: rgb(250, 248, 248);
    margin-bottom: 0;
}

.warning-section {
    background: #e42424;
}

/* Stats Cards */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.stat-card .btn {
    margin-top: 12px;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Warning Grid */
.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.warning-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.warning-box:hover {
    transform: translateY(-5px);
}

.warning-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.warning-box h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Scams Grid */
.scams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.scam-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #667eea;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.scam-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.scam-card p {
    margin-bottom: 1rem;
}

.scam-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.scam-card li {
    margin-bottom: 0.5rem;
}

/* Prevention Tips */
.prevention-tips {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.prevention-tips h2 {
    margin-bottom: 1.5rem;
}

.prevention-tips ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
}

.prevention-tips li {
    padding-left: 0;
}

/* Content Section */
.about-content,
.feature-list {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.content-section h2 {
    color: #667eea;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h2:first-child {
    margin-top: 0;
}

.feature-list {
    background: #f9f9f9;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
}

.feature-list li {
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.info-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #667eea;
}

.info-box h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.info-box a {
    color: #667eea;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

.info-box ul {
    margin-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer a {
    color: #ff6b6b;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}




/* Improved mobile fit and image scaling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar .container {
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-links a {
    padding: 8px 10px;
    display: inline-block;
}

.hero {
    padding: 60px 0;
}

/* Media Queries for Responsive Design */

/* Large Devices (1024px and above) */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
}

/* Tablets (769px to 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats,
    .scams-grid,
    .warning-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Small Tablets (600px to 768px) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card h3 {
        font-size: 1.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats,
    .scams-grid,
    .warning-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prevention-tips ul {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .page-header p {
        font-size: 0.85rem;
    }

    .nav-links {
        gap: 0.5rem;
        flex-direction: column;
    }

    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 10px;
    }

    .stats,
    .scams-grid,
    .warning-grid,
    .prevention-tips ul {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.2rem;
    }

    .stat-card h3 {
        font-size: 1rem;
    }

    .scam-card,
    .warning-box {
        padding: 1.5rem;
    }

    .scam-card h3 {
        font-size: 1.1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 8px;
        font-size: 0.95rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .contact-buttons .btn {
        width: 100%;
    }

    .prevention-tips {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .prevention-tips h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .info-section,
    .warning-section,
    .content-section {
        padding: 40px 0;
    }

    .footer {
        padding: 1.5rem 0;
    }
}


