.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.header h2 {
    font-size: 18px;
    color: #666;
}

.main-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.form-column {
    flex: 1;
}

.image-column {
    flex: 1;
}

.form-container {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.cta-button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.cta-button:hover {
    background: #005177;
}

.image-column img {
    width: 100%;
    border-radius: 8px;
}

.clarification {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 8px;
}

.credit-table {
    margin-top: 40px;
}

.credit-table h3 {
    text-align: center;
    margin-bottom: 20px;
}

.credit-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.credit-table th, .credit-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

.credit-table th {
    background-color: #f2f2f2;
}

.table-note {
    text-align: center;
    color: #666;
    font-style: italic;
}