         :root {
            --primary-color: #FF6600;
            --primary-light: #FF9933;
            --primary-dark: #CC5500;
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --dark-gray: #333333;
            --text-color: #444444;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .project-hero {
            background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
            padding: 80px 0;
            text-align: center;
        }
        
        .project-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }
        
        .project-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-color);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
            margin-top: 20px;
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
        }
        
        .project-details {
            padding: 80px 0;
        }
        
        .project-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        .project-image {
            background-color: var(--light-gray);
            height: 300px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .project-image img {
            object-fit: cover;
        }
        
        .project-imagee {
            background-color: var(--light-gray);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .project-imagee img {
            object-fit: cover;
        }

        
        .project-features {
            margin-top: 30px;
        }
        
        .feature-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 20px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .feature-icon {
            color: var(--primary-color);
        }
        
        .downloads {
            margin-top: 40px;
            padding: 25px;
            background-color: var(--light-gray);
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
        }
        
        .downloads h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark-gray);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .downloads h3::before {
            content: "📥";
            font-size: 1.3rem;
        }
        
        .download-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .download-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: var(--white);
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s;
        }
        
        .download-item:hover {
            transform: translateX(5px);
        }
        
        .download-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .file-icon {
            font-size: 1.5rem;
        }
        
        .file-details h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--dark-gray);
        }
        
        .file-details p {
            font-size: 0.85rem;
            color: var(--text-color);
            margin: 0;
        }
        
        .download-btn {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .download-btn:hover {
            background-color: var(--primary-dark);
        }
        
        .project-gallery {
            padding: 60px 0;
            background-color: var(--light-gray);
        }
        
        .gallery-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: var(--dark-gray);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .gallery-caption {
            padding: 15px;
            text-align: center;
        }
        
        .technologies {
            padding: 60px 0;
        }
        
        .technologies h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: var(--dark-gray);
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .tech-item {
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .tech-item:hover {
            transform: translateY(-5px);
        }
        
        .tech-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .tech-item h3 {
            font-size: 1.2rem;
            color: var(--dark-gray);
        }
        
        .results {
            padding: 60px 0;
            background-color: var(--light-gray);
        }
        
        .results h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: var(--dark-gray);
        }

        .results p {
            margin-bottom: 20px;
        }
        
        .results-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .project-info h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }
        
        .project-info p {
            margin-bottom: 20px;
        }

        .result-item {
            background-color: var(--white);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .result-item h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-gray);
        }
        
        .project-navigation {
            padding: 60px 0;
            text-align: center;
        }
        
        .nav-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: background-color 0.3s;
        }
        
        .social-link:hover {
            background-color: var(--primary-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }