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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1e4a72 0%, #2b5a87 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav a:hover {
    color: #ff6b35;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Section - Our Commitment */
.commitment-section h1 {
    color: #2b5a87;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.commitment-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.code-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.code-link:hover {
    border-bottom-color: #ff6b35;
}

/* Right Section - Make a Report */
.report-section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #2b5a87;
}

.report-section h2 {
    color: #2b5a87;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.report-option {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.report-option:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.report-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.online-icon {
    background: #2b5a87;
}

.phone-icon {
    background: #5a8a5a;
}

.report-content h3 {
    color: #2b5a87;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.report-btn {
    background: #5a8a5a;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.report-btn:hover {
    background: #4a7a4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(90, 138, 90, 0.3);
}

/* Footer */
footer {
    background: #1e4a72;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-warning {
    background: #2b5a87;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.footer-disclaimer {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #ccc;
    border-top: 1px solid #2b5a87;
    padding-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        position: relative;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e4a72;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.mobile-active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .commitment-section h1 {
        font-size: 1.8rem;
    }

    .report-section {
        padding: 1.5rem;
    }

    .report-section h2 {
        font-size: 1.6rem;
    }

    .report-option {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .report-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .commitment-section h1 {
        font-size: 1.5rem;
    }

    .report-section h2 {
        font-size: 1.4rem;
    }

    .report-section {
        padding: 1rem;
    }
}