@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@400;700&display=swap');

        :root {
            --primary-color: #f7a916;
            --secondary-color: #3e5a6a;
            --dark-color: #1a1a1a;
            --light-color: #f5f5f5;
            --font-family: 'Montserrat', sans-serif;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-color);
            padding-top: var(--header-height);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(26, 26, 26, 0.95);
            color: var(--light-color);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
        }

        header .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            margin: 0 15px;
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            display: block;
            margin-top: 5px;
            right: 0;
            background: var(--primary-color);
            transition: width 0.4s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
            left: 0;
            background: var(--primary-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            height: 21px;
            width: 30px;
        }

        .burger-menu div {
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .nav-active {
            transform: translateX(0%);
        }

        main {
            padding: 40px 5%;
        }

        h1, h2, h3 {
            color: var(--dark-color);
            margin-bottom: 20px;
            font-weight: bold;
        }

        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 40px;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-top: 30px;
        }

        p {
            margin-bottom: 15px;
        }

        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        ul li {
            margin-bottom: 10px;
        }

        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 40px 5%;
            text-align: center;
        }

        footer .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        footer .footer-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        footer .footer-nav ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer .footer-nav ul li a:hover {
            color: var(--primary-color);
        }

        .contact-info p {
            margin: 5px 0;
            color: rgba(255, 255, 255, 0.8);
        }

        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            header {
                height: 60px;
                padding: 0 5%;
            }

            header .logo {
                font-size: 1.5rem;
            }

            nav {
                position: fixed;
                right: 0;
                top: 60px;
                height: 100vh;
                width: 70%;
                background-color: var(--dark-color);
                flex-direction: column;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                z-index: 999;
                padding-top: 50px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                opacity: 0;
                margin: 20px 0;
            }

            .burger-menu {
                display: flex;
            }

            .nav-active {
                transform: translateX(0%);
            }
        }

