 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #e10600;
        }
        
        /* Header Styles */
        header {
            background-color: #e10600;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            background: white;
            color: #e10600;
            padding: 0 5px;
            margin-right: 5px;
            border-radius: 4px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 10px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 5px auto;
            padding: 0 20px;
        }
        
        .hero {
            background: url('../img/All\ drivers.jpg');
            background-size: cover;
            background-position: center;
            height: 440px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .btn {
            display: inline-block;
            background: #e10600;
            color: white;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background: #b30500;
        }
        
        /* Section Styles */
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e10600;
            color: #333;
        }
        
        /* Standings Section */
        .standings {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .standings-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .standings-header {
            background: #e10600;
            color: white;
            padding: 15px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .standings-content {
            padding: 15px;
        }
        
        .driver, .team {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .driver:last-child, .team:last-child {
            border-bottom: none;
        }
        
        .position {
            font-weight: bold;
            width: 30px;
            display: inline-block;
        }
        
        /* News Section */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .news-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
        }
        
        .news-image {
            height: 180px;
            background-size: cover;
            background-position: center;
        }
        
        .news-content {
            padding: 15px;
        }
        
        .news-date {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .news-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        /* Calendar Section */
        .calendar {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }
        
        .calendar-header {
            background: #e10600;
            color: white;
            padding: 15px;
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px;
        }
        
        .event {
            display: flex;
            align-items: center;
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 8px;
        }
        
        .event-date {
            background: #e10600;
            color: white;
            width: 60px;
            height: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .event-day {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .event-month {
            font-size: 0.9rem;
        }
        
        .event-info {
            flex-grow: 1;
        }
        
        .event-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .event-location {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* Footer */
        footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #e10600;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #ddd;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #e10600;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #970808;
            color: #999;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px;
            }
            
            .hero {
                height: 300px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
        }