:root {
    --alert-red: #D32F2F;
    --dark: #000000;
    --light: #FFFFFF;
    --warning-yellow: #FFC107;
    --section-bg: #FAFAFA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Banner */
.hero-banner {
    text-align: center;
    padding: 40px 0;
    position: relative;
    margin-bottom: 40px;
}

.warning-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: repeating-linear-gradient(
        45deg,
        var(--alert-red),
        var(--alert-red) 20px,
        var(--light) 20px,
        var(--light) 40px
    );
}

.hero-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--alert-red);
}

.hero-banner h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.alert-box {
    background-color: var(--alert-red);
    color: var(--light);
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-box i {
    font-size: 2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--alert-red);
    margin-bottom: 15px;
}

.divider {
    height: 4px;
    width: 100px;
    background-color: var(--alert-red);
    margin: 0 auto;
}

/* Scam Identifiers */
.scam-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.scam-card {
    background-color: var(--section-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--alert-red);
}

.scam-card h3 {
    color: var(--alert-red);
    margin-bottom: 10px;
}

/* Scam Process Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--alert-red);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-step {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-step::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--light);
    border: 4px solid var(--alert-red);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.step-number {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--alert-red);
    color: var(--light);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    top: 10px;
    z-index: 1;
}

.step-content {
    padding: 20px 30px;
    background-color: var(--section-bg);
    position: relative;
    border-radius: 6px;
    border-left: 3px solid var(--alert-red);
}

.timeline-step:nth-child(odd) {
    left: 0;
}

.timeline-step:nth-child(even) {
    left: 50%;
}

.timeline-step:nth-child(odd) .step-number {
    right: -50px;
}

.timeline-step:nth-child(even) .step-number {
    left: -50px;
}

.timeline-step:nth-child(even)::after {
    left: -17px;
}

/* Red Flags Grid */
.flag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.flag-item {
    text-align: center;
    padding: 20px;
    background-color: var(--section-bg);
    border-radius: 8px;
    border-top: 5px solid var(--alert-red);
}

.flag-item i {
    font-size: 2.5rem;
    color: var(--alert-red);
    margin-bottom: 15px;
}

.flag-item h3 {
    margin-bottom: 10px;
}

/* Action Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.step-box {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--alert-red);
    color: var(--light);
    border-radius: 8px;
}

.step-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step-box h3 {
    margin-bottom: 10px;
}

/* Final Verdict */
.final-verdict {
    margin-bottom: 60px;
}

.verdict-box {
    background-color: var(--section-bg);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--alert-red);
}

.verdict-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--alert-red);
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    position: relative;
    padding: 0 30px;
}

blockquote::before,
blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--alert-red);
    position: absolute;
    opacity: 0.6;
}

blockquote::before {
    top: -20px;
    left: 0;
}

blockquote::after {
    bottom: -40px;
    right: 0;
}
/* Reports Section */
.report-gallery {
    margin-bottom: 60px;
}

.report-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
    background-color: var(--section-bg);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--alert-red);
}

.report-image img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.report-details h3 {
    color: var(--alert-red);
    margin-bottom: 15px;
}

.report-details p {
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* Report Form */
.report-form {
    max-width: 800px;
    margin: 0 auto 60px;
    background-color: var(--section-bg);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.submit-btn {
    background-color: var(--alert-red);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #b71c1c;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    background-color: var(--dark);
    color: var(--light);
    margin-top: 30px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--warning-yellow);
    text-decoration: none;
}
/* Responsive */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-step:nth-child(even) {
        left: 0;
    }

    .timeline-step:nth-child(odd) .step-number,
    .timeline-step:nth-child(even) .step-number {
        left: 5px;
    }

    .timeline-step::after {
        left: 15px;
    }
}