
        :root {
            --primary: #2a9d8f;
            --secondary: #264653;
            --accent: #e9c46a;
            --light: #f1faee;
            --highlight: #e76f51;
            --alert: #e63946;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .logo i {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .active {
            color: var(--accent) !important;
            border-bottom: 2px solid var(--accent);
        }
        
        .page-header {
            background: linear-gradient(rgba(38, 70, 83, 0.9), rgba(38, 70, 83, 0.95)), url('https://images.unsplash.com/photo-1615876234886-fd9a39fda97f?ixlib=rb-4.0.3') no-repeat center center/cover;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .breadcrumb span {
            color: white;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--secondary);
            font-size: 2.2rem;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 0.5rem auto;
            border-radius: 2px;
        }
        
        .alert-banner {
            background: var(--alert);
            color: white;
            padding: 1rem;
            text-align: center;
            margin: 1rem 0;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            animation: pulse 2s infinite;
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
        }
        
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.8; }
            100% { opacity: 1; }
        }
        
        .alert-banner.hidden {
            display: none;
        }
        
        .earthquake-dashboard {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        
        @media (max-width: 900px) {
            .earthquake-dashboard {
                grid-template-columns: 1fr;
            }
        }
        
        .live-status {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .status-card {
            background: var(--light);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .status-card h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .status-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .status-value.alert {
            color: var(--alert);
        }
        
        .map-container {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/Pakistan_%28orthographic_projection%29.svg/500px-Pakistan_%28orthographic_projection%29.svg.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: relative;
        }
        
        .earthquake-marker {
            position: absolute;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--alert);
            transform: translate(-50%, -50%);
            box-shadow: 0 0 10px var(--alert);
            animation: pulse 1.5s infinite;
        }
        
        .earthquake-marker::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--alert);
            opacity: 0.5;
            animation: ripple 2s infinite;
        }
        
        @keyframes ripple {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(3); opacity: 0; }
        }
        
        .recent-earthquakes {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 3rem 0;
        }
        
        .earthquake-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
        }
        
        .earthquake-table th, .earthquake-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .earthquake-table th {
            background: var(--light);
            color: var(--secondary);
            font-weight: 600;
        }
        
        .earthquake-table tr:hover {
            background: #f9f9f9;
        }
        
        .magnitude {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            color: white;
            font-weight: 600;
            text-align: center;
            min-width: 60px;
        }
        
        .magnitude.low {
            background: #4caf50;
        }
        
        .magnitude.medium {
            background: #ff9800;
        }
        
        .magnitude.high {
            background: #f44336;
        }
        
        .impact-section {
            background: var(--light);
            padding: 3rem 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        
        .impact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .impact-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .impact-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .impact-card h3 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        
        .impact-card p {
            color: #666;
        }
        
        .preparedness-section {
            margin: 3rem 0;
        }
        
        .preparedness-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .preparedness-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .preparedness-card h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .preparedness-card ul {
            list-style-position: inside;
            padding-left: 1rem;
        }
        
        .preparedness-card li {
            margin-bottom: 0.5rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--highlight);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .btn:hover {
            background-color: #d45a3c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .text-center {
            text-align: center;
        }
        
        .mt-3 {
            margin-top: 3rem;
        }
        
        footer {
            background: var(--secondary);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            margin-top: 4rem;
        }
        
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .footer-links a {
            color: var(--accent);
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .earthquake-table {
                display: block;
                overflow-x: auto;
            }
        }