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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1a4d2e 0%, #0d3d1f 50%, #1a4d2e 100%);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: linear-gradient(180deg, #fff8e7 0%, #fff 50%, #fff8e7 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    padding: 40px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #1a4d2e;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.salam {
    color: #1a4d2e;
    font-size: 16px;
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 500;
}

.subtitle {
    color: #666;
    font-size: 16px;
    font-style: italic;
}

.instructions {
    margin-bottom: 30px;
}

.intro {
    background: linear-gradient(135deg, #fff8e7 0%, #fff 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.intro-content {
    text-align: center;
}

.intro-text {
    color: #333;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-text:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #1a4d2e;
}

.instructions h2 {
    color: #1a4d2e;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.method {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff8e7 0%, #fff 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.method.recommended {
    border: 3px solid #1a4d2e;
    background: linear-gradient(135deg, #e8f5e9 0%, #fff 100%);
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.2);
}

.recommendation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a4d2e 0%, #0d3d1f 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-icon {
    font-size: 32px;
    margin-right: 15px;
}

.method-content h3 {
    color: #1a4d2e;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
}

.method-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.method-content a {
    color: #1a4d2e;
    text-decoration: none;
    font-weight: 600;
}

.method-content a:hover {
    text-decoration: underline;
}

.method-content a:hover {
    text-decoration: underline;
}

.steps {
    background: linear-gradient(135deg, #fff8e7 0%, #fff 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.steps h3 {
    color: #1a4d2e;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.steps ol {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 20px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h2 {
    color: #1a4d2e;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #d4af37;
    background: #fff;
    color: #333;
    font-size: 18px;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
    border-radius: 8px;
}

.form-group input:focus {
    outline: none;
    border-color: #1a4d2e;
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1a4d2e 0%, #0d3d1f 100%);
    color: #fff;
    border: 2px solid #d4af37;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Georgia', serif;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 77, 46, 0.3);
}

.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    display: none;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #1a4d2e;
    border-radius: 8px;
    display: block;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #dc3545;
    border-radius: 8px;
    display: block;
}

footer {
    text-align: center;
    color: #1a4d2e;
    font-size: 15px;
    padding-top: 20px;
    border-top: 2px solid #d4af37;
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 600px) {
    .container {
        padding: 25px;
    }

    header h1 {
        font-size: 24px;
    }

    .method {
        flex-direction: column;
        text-align: center;
    }

    .method-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
