/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333;
}

main {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

h1 {
    margin-top: 0;
    font-size: 1.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: Arial, sans-serif;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: Arial, sans-serif;
}

/* Tablet View */
@media (max-width: 1024px) {
    main {
        padding: 30px 15px;
    }

    h1 {
        font-size: 1.6rem;
    }

    p {
        font-size: 0.95rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    main {
        padding: 20px 10px;
    }

    h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    p {
        font-size: 0.95rem;
    }
}
