/* styles.css */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    height: 100vh;
    justify-content: flex-start;
    overflow-x: hidden;
}

.header {
    background: none;
    padding: 20px;
    margin: 0;
    text-align: center;
    width: 100%;
    box-shadow: none;
}

.header .icon {
    max-width: 100px;
    display: block;
    margin: 0 auto 10px;
}

.header .name {
    font-size: 2em;
    margin: 10px 0;
}

.header .description {
    color: #666;
    margin: 10px 0;
}

.content {
    background: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(100vw - 40px);
    max-width: 800px;
    text-align: left;
}

.content h2 {
    font-size: 1.5em;
    margin: 20px 0 10px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-gap: 20px;
    margin-top: 25px;
}

.feature {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.icon {
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #007BFF;
    border-radius: 50%;
    margin-bottom: 10px;
    font-size: 24px; 
    background-color: #fff;
}


.feature .name {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.feature .description {
    font-size: 14px;
    color: #666;
}

@media (max-width: 900px) {
    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }
}

footer {
    font-size: 0.8em;
    color: #666;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: calc(100vw - 40px);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.link {
    color: #007BFF;}