/* General body settings */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    box-sizing: border-box;
}

/* Container settings */
.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

/* Header styles */
.header h1 {
    font-size: 2.2rem;
    margin: 0 0 20px;
}

/* Tagline frame settings */
.tagline-frame {
    background-color: #272727;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tagline p {
    font-size: 1.3rem;
    margin: 0;
}

/* Section settings */
.pricing p,
.stand-with-us p,
.platforms p {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Icon button settings */
.icon-button,
.icon-div {
    background-color: #272727;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
}

.icon-button img,
.icon-div img {
    width: 30px;
    height: 30px;
}

/* Social and platform icon container */
.stand-with-us .social-icons,
.platforms .platform-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

/* Footer settings */
.footer p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: bold;
}

/* Responsive settings */
@media (min-height: 700px) and (min-width: 768px) {
    .header h1 {
        font-size: 3rem;
    }

    .tagline p,
    .pricing p,
    .stand-with-us p,
    .platforms p {
        font-size: 1.5rem;
    }

    .icon-button,
    .icon-div {
        width: 70px;
        height: 70px;
    }

    .icon-button img,
    .icon-div img {
        width: 45px;
        height: 45px;
    }

    .stand-with-us .social-icons,
    .platforms .platform-icons {
        gap: 15px;
    }

    .container {
        max-width: 1200px;
        padding: 30px;
    }

    .footer p {
        font-size: 1rem;
    }
}