* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

.main-content {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 100%;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.content-section h2 {
    color: #7cb342;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 768px) {
    .main-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .main-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .content-card {
        padding: 2rem;
        border-radius: 6px;
    }

    .content-section h2 {
        font-size: 1rem;
        line-height: 1.3;
    }

    .content-section p {
        font-size: 0.85rem;
        line-height: 1.5;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1.5rem 1rem;
        max-width: 100vw;
        margin: 0;
        width: 100%;
    }

    .container {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .main-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
        border-radius: 6px;
        margin: 0;
        width: 100%;
    }

    .content-section h2 {
        font-size: 0.9rem;
        line-height: 1.3;
        margin: 1.5rem 0 1rem 0;
    }

    .content-section p {
        font-size: 0.8rem;
        line-height: 1.5;
        text-align: left;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 360px) {
    .main-content {
        padding: 1rem 0.75rem;
    }

    .main-title {
        font-size: 1.4rem;
    }
    
    .content-card {
        padding: 1.25rem;
    }

    .content-section h2 {
        font-size: 0.85rem;
    }

    .content-section p {
        font-size: 0.75rem;
    }
}