body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f1e8;
    color: #1f2933;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.site-header {
    text-align: center;
}

.site-logo {
    width: 180px;
}

.hero {
    text-align: center;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 20px;
    font-weight: bold;
    color: #1f6f73;
}

.card,
.privacy,
.trust-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.card-intro {
    text-align: center;
    margin-bottom: 25px;
    color: #4f5f6f;
}

label {
    display: block;
    margin: 14px 0;
}

.range-label {
    margin-bottom: 20px;
}

input[type="range"] {
    width: 100%;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.options-grid label {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 14px;
    border-radius: 12px;
    margin: 0;
}

.count-option {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

#passwordCount {
    width: 80px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

button {
    background: #1f6f73;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 16px;
}

.primary-btn {
    width: 100%;
}

.output-wrap {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

#passwordOutput {
    flex: 1;
    min-height: 70px;
    padding: 12px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #ccc;
    resize: vertical;
}

.strength {
    font-weight: bold;
    margin-top: 15px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.site-footer {
    text-align: center;
    padding-bottom: 20px;
}

@media (max-width: 700px) {
    .options-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .output-wrap {
        flex-direction: column;
    }

    #copyBtn {
        width: 100%;
    }
}