
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --rodeo-brown: #8B4513;
            --rodeo-tan: #D2B48C;
            --rodeo-gold: #FFD700;
            --rodeo-red: #DC143C;
            --rodeo-dark: #6c3702;
            --text-light: #f5f5f5;
            --text-dark: #333;
            --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, var(--rodeo-tan) 0%, var(--rodeo-brown) 100%);
            min-height: 100vh;
            color: var(--text-dark);
        }

        .header {
            background: var(--rodeo-dark);
            color: var(--text-light);
            padding: 1rem 2rem;
            box-shadow: var(--card-shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .header .subtitle {
            text-align: center;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .card-icon {
            font-size: 2rem;
            margin-right: 0.75rem;
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--rodeo-brown);
        }

        .card-description {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .card-button {
            background: var(--rodeo-red);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
        }

        .card-button:hover {
            background: #b91c3c;
        }

        .stats-section {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: var(--card-shadow);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: linear-gradient(135deg, var(--rodeo-gold), #ffd900);
            border-radius: 8px;
            color: var(--text-dark);
        }

        .stat-value {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover {
            color: var(--rodeo-red);
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: var(--rodeo-brown);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .btn-primary {
            background: var(--rodeo-red);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            margin-right: 0.5rem;
        }

        .btn-secondary {
            background: #6b7280;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }

        .data-table th,
        .data-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        .data-table th {
            background: var(--rodeo-tan);
            color: var(--text-dark);
            font-weight: bold;
        }

        .data-table tr:hover {
            background: #f9f9f9;
        }

        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            
            .header {
                padding: 1rem;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Navigation Styles */
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--rodeo-gold);
        }

        .nav-link.active {
            background: var(--rodeo-gold);
            color: var(--text-dark);
        }

        /* Page System */
        .page {
            display: none;
            animation: fadeIn 0.3s ease-in;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .page-content {
            padding: 2rem 0;
        }

        /* Home Page Styles */
        .hero-section {
            text-align: center;
            padding: 4rem 0;
            background: white;
            border-radius: 12px;
            margin-bottom: 3rem;
            box-shadow: var(--card-shadow);
        }

        .hero-section h1 {
            font-size: 3rem;
            color: var(--rodeo-brown);
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .hero-image {
            font-size: 4rem;
            margin-bottom: 2rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-item {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-4px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-item h3 {
            color: var(--rodeo-brown);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .feature-item p {
            color: #666;
            line-height: 1.6;
        }

        .cta-section {
            text-align: center;
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
        }

        .cta-section h2 {
            color: var(--rodeo-brown);
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .cta-section p {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .cta-button {
            background: var(--rodeo-red);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background: #b91c3c;
        }

        /* About Page Styles */
        .about-header,
        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .about-header h1,
        .contact-header h1 {
            color: var(--rodeo-brown);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .page-subtitle {
            color: #666;
            font-size: 1.2rem;
        }

        .about-content {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            margin-bottom: 2rem;
        }

        .about-section {
            margin-bottom: 2.5rem;
        }

        .about-section h2 {
            color: var(--rodeo-brown);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .about-section p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            color: #666;
            padding: 0.5rem 0;
            font-size: 1.1rem;
        }

        .stats-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .showcase-stat {
            text-align: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--rodeo-gold), #ffd900);
            border-radius: 8px;
        }

        .showcase-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .showcase-label {
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Contact Page Styles */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .contact-icon {
            font-size: 2rem;
            margin-right: 1rem;
            margin-top: 0.25rem;
        }

        .contact-item h3 {
            color: var(--rodeo-brown);
            margin-bottom: 0.5rem;
        }

        .contact-item p {
            color: #666;
            margin: 0.25rem 0;
        }

        .contact-form-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
        }

        .contact-form-section h2 {
            color: var(--rodeo-brown);
            margin-bottom: 1.5rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .social-section {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            text-align: center;
        }

        .social-section h2 {
            color: var(--rodeo-brown);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-link {
            color: var(--rodeo-red);
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--rodeo-red);
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .social-link:hover {
            background: var(--rodeo-red);
            color: white;
        }

        /* Mobile Responsive Updates */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-list {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .stats-showcase {
                grid-template-columns: repeat(2, 1fr);
            }

            .social-links {
                flex-direction: column;
                align-items: center;
            }
        }
    