body {
    font-family: Arial, sans-serif;
    background-color: #f9f9fb;
    color: #333;
    margin: 0;
    padding: 20px;
}
h1, h2 {
    color: #2c3e50;
}
.container {
    max-width: 800px;
    margin: auto;
}
.form-section, .preview-section {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.form-section input, .form-section textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.preview-section {
    position: relative;
    margin-top: 30px;
}
.preview-section img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 10px;
}
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}
.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}
.social-links a {
    margin-right: 10px;
    color: #2c3e50;
    text-decoration: none;
}