body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}

.section {
    padding: 50px 20px;
}

/* Header Section */
.header {
    background: black;
    text-align: center;
}

.header img {
    margin: 20px auto;
    display: block;
    height: 100px;
}

.header h1 {
    font-size: 2rem;
    margin: 0;
}

/* Reviews Section */
.reviews {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.review-box {
    background: #333;
    padding: 20px;
    width: 200px;
    text-align: center;
    border-radius: 10px;
}

.review-box span {
    font-size: 1.5rem;
}

/* Made by Devs Section */
.made-by-devs {
    background: white;
    color: black;
    text-align: center;
}

.made-by-devs h1 {
    font-size: 2rem;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.image-box {
    background: black;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
    width: 200px;
}

.image-box img {
    max-width: 100%;
    border-radius: 10px;
}

.image-box p {
    color: white;
}

/* Features Section */
.features {
    background: black;
    text-align: center;
}

.features h1 {
    font-size: 2rem;
}

.features .columns {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.features .column {
    text-align: left;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features ul li {
    margin: 5px 0;
}

/* Social Links */
.social-links {
    margin-top: 30px;
    text-align: center;
    background: black;
    padding: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
}





/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header img {
        height: 60px;
    }

    .header h1 {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .reviews {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .review-box {
        width: 85%;
        max-width: 300px;
    }

    .features .columns {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 20px;
    }

    .features .column {
        width: 100%;
        text-align: left;
    }

    .features ul li {
        padding-left: 25px;
        text-indent: -25px;
    }

    .image-box {
        width: 85%;
        max-width: 300px;
    }

    .demo-links a {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
    .tg-title {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .telegram-section h1 {
        font-size: 1.5rem;
        margin: 10px 0;
    }
    .create-site-btn {
        font-size: 1rem;
        padding: 10px 16px;
        margin: 15px 10px;
        width: 85%;
        max-width: 300px;
        text-align: center;
    }
    .social-links.top {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        padding: 8px;
    }

    .social-links.top a {
        font-size: 0.9rem;
        margin: 0;
        padding: 4px 8px;
    }
}
.telegram-section {
    background: #FFFFFF;
    text-align: center;
    padding: 50px 20px;
}

.telegram-section h1 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 30px;
}
.tg-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tg-logo {
    height: 40px;
    width: auto;
}

.demo-links {
    margin-top: 15px;
}

.demo-links a {
    background: orange;
    color: black;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
}

.demo-links a:hover {
    background: darkorange;
}

.create-site-btn {
    background: orange;
    color: black;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
}

.create-site-btn:hover {
    background: darkorange;
}


.social-links.top {
    margin: 0;
    padding: 10px;
}
