Order a Boot Repair
body { font-family: Arial, sans-serif; } h2, h4, p { text-align: left; margin: 10px; } /* Tab container */ .tab-container { display: flex; justify-content: center; border-bottom: 1px solid #000; margin-bottom: 10px; } /* Tab label styles */ .tab-label { padding: 10px 20px; cursor: pointer; border: 1px solid #000; border-bottom: none; text-align: center; margin: 0 5px; display: inline-block; transition: background-color 0.3s; } /* Active tab style */ .tab-label.active { background-color: #e0e0e0; } /* Hide tab contents by default */ .tab-content { display: none; padding: 20px; border: 1px solid #000; margin-top: 10px; } /* Show active tab content */ .tab-content.active { display: block; } /* Responsive styles */ @media screen and (max-width: 600px) { .tab-container