* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; background: #fff; line-height: 1.6; }
a { color: #0056b3; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header/Nav */
header { background: #f4f4f4; border-bottom: 1px solid #ddd; padding: 15px 0; }
.top-nav { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.5rem; font-weight: bold; color: #222; text-decoration: none; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: #555; text-decoration: none; font-weight: 500; font-size: 1.1rem; }
.nav-links a:hover { color: #000; }

/* Hub nav */
.hub-nav { background: #e9ecef; padding: 12px 0; font-size: 0.95rem; }
.hub-nav-content { display: flex; flex-wrap: wrap; gap: 15px; }
.hub-nav-content a { color: #495057; font-weight: 500; }
.hub-nav-content a:hover { color: #000; text-decoration: underline; }

/* Hero */
.hero { position: relative; background: url('/selfstorage.jpg') center/cover no-repeat; padding: 80px 20px; text-align: center; color: #fff; }
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: 2.5rem; margin-bottom: 15px; }
.hero p { font-size: 1.25rem; max-width: 800px; margin: 0 auto; }

/* Content */
.content-section { padding: 50px 0; }
h2 { font-size: 2rem; margin-bottom: 25px; color: #222; border-bottom: 2px solid #eaeaea; padding-bottom: 10px; }
h3 { font-size: 1.5rem; margin-top: 35px; margin-bottom: 15px; color: #333; }
.content-section p { margin-bottom: 20px; font-size: 1.1rem; }
ul.feature-list { list-style: none; padding-left: 0; margin-bottom: 30px; font-size: 1.1rem; }
ul.feature-list li { margin-bottom: 12px; padding-left: 30px; position: relative; }
ul.feature-list li::before { content: "✓"; position: absolute; left: 0; color: #28a745; font-weight: bold; font-size: 1.2rem; }

/* Tables */
.table-wrapper { overflow-x: auto; margin-top: 30px; margin-bottom: 40px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border-radius: 8px; }
#storage-table { width: 100%; border-collapse: collapse; min-width: 800px; background: #fff; }
#storage-table th, #storage-table td { border: 1px solid #eaeaea; padding: 15px; text-align: left; }
#storage-table th { background: #f8f9fa; cursor: pointer; white-space: nowrap; font-weight: 600; color: #444; }
#storage-table th a { color: inherit; text-decoration: none; display: block; }
#storage-table tr:hover { background-color: #fcfcfc; }
.sort-asc:after { content: " ▲"; font-size: 0.8em; }
.sort-desc:after { content: " ▼"; font-size: 0.8em; }
.btn { display: inline-block; padding: 6px 12px; background: #0056b3; color: #fff !important; text-decoration: none !important; border-radius: 4px; font-size: 0.9rem; font-weight: 500; }
.btn:hover { background: #004494; }

/* Grid layout for links */
.link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; margin-bottom: 40px; }
.card { background: #f8f9fa; border: 1px solid #eaeaea; border-radius: 8px; padding: 20px; transition: transform 0.2s, box-shadow 0.2s; }
.card h4 { margin-top: 0; margin-bottom: 10px; font-size: 1.2rem; }
.card a { display: inline-block; margin-top: 10px; font-weight: 500; }
.card:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.08); }

/* Footer */
footer { background: #1a1a1a; color: #ddd; padding: 60px 0 30px; margin-top: 50px; }
footer h3 { color: #fff; margin-top: 0; border-bottom: 1px solid #333; padding-bottom: 10px; font-size: 1.3rem; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-col { flex: 1; min-width: 250px; }
.footer-col a { color: #aaa; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #333; font-size: 0.9rem; color: #888; }
