body {
    background-color: white;
}

.client-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}
.hero {
    text-align: center;
    margin-bottom: 50px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.lorem-ipsum {
    color: #666;
    margin-bottom: 40px;
    text-align: justify;
}
.form-section {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}
.preset-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.preset-card {
    border: 2px solid #eee;
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.preset-card:hover {
    border-color: #333;
}
.preset-card.active {
    border-color: #000;
    background: #f9f9f9;
}
.preset-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}
.preset-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}
.submit-btn {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
    font-weight: 700;
}
.submit-btn:hover {
    opacity: 0.8;
}
