    main {
        padding: 20px;
    }

    .about-section,
    .server-history,
    .server-community {
        background: white;
        margin: 20px auto;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        max-width: 800px;
        text-align: center;
    }

    main h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #ff6347;
    }

    main p {
        font-size: 1rem;
        margin-bottom: 15px;
        color: #555;
    }

    .server-features {
        margin-top: 20px;
        text-align: left;
    }

    .server-features h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        color: #333;
    }

    .server-features ul {
        list-style: none;
        padding: 0;
    }

    .server-features li {
        font-size: 1rem;
        margin: 5px 0;
        padding-left: 20px;
        position: relative;
        color: #555;
    }

    .server-features li::before {
        content: '✔';
        color: #ff6347;
        position: absolute;
        left: 0;
        font-size: 1.2rem;
        top: 0;
    }
