* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.screenshots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.screenshot {
    max-width: 100%;
    height: auto;
}

.screenshot:first-child {
    max-width: 150px;
}

.screenshot:last-child {
    max-width: 250px;
}

.content {
    font-size: 16px;
    line-height: 1.8;
}

.content p {
    margin-bottom: 20px;
}

.content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .screenshots {
        gap: 15px;
    }
    
    .content {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .screenshots {
        flex-direction: column;
        gap: 20px;
    }
    
    .screenshot {
        max-width: 280px;
    }
}

.legal {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}