.pincode-search-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.search-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s;
}

.search-button:hover {
    background: #005d82;
}

#pincode-result {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pincode-details, .pincode-map, .sample-content {
    margin-bottom: 20px;
}

.pincode-details h2, .pincode-map h2, .sample-content h2 {
    color: #0073aa;
}

.pincode-details p, .sample-content p {
    line-height: 1.6;
}