@charset "utf-8";
:root {
            --primary-color: #165DFF;
            --secondary-color: #FF7D00;
            --dark-color: #1E293B;
            --light-color: #F8FAFC;
            --accent-color: #10B981;
            --neutral-color: #64748B;
            --font-family: 'Inter', sans-serif;
        }

*{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);}
a{text-decoration-line:none;color:inherit;}
.container{max-width: 1400px;margin: 0 auto;padding: 0 15px;}
.header{position: fixed;top: 0;left: 0;width: 100%;z-index: 100;transition: background-color 0.3s ease;}
.header.scrolled {background-color: white;box-shadow: 0 2px 10px rgba(0,0,0,0.1);}
.nav {display: flex;justify-content: space-between;align-items: center;padding: 20px 0;}
.logo{
	display: flex;
	align-items: center;
	gap: 10px;
	color: #1E293B;
	font-size: 1.5rem;
	font-weight: 700;
}
.logo-icon {width: 40px;height: 40px;border-radius: 50%;background-color:#165DFF;display: flex;align-items: center;justify-content: center;color: white;font-size: 1.2rem;font-weight: bold;
}
.nav-links {display: flex;gap: 25px;list-style: none;
}
.nav-link {color: white;text-decoration: none;font-weight: 500;transition: color 0.3s ease;}
.header.scrolled .nav-link {
	color: var(--dark-color);
}
.nav-link:hover {color:#FF7D00;}




.footer {background-color: var(--dark-color);color: white;padding: 60px 0;}

        .footer-content {
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        .footer-col {
            flex: 1;
        }

        .footer-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color:#165DFF;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-about {
            color: #94a3b8;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-newsletter input {
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: none;
            margin-bottom: 10px;
        }

        .footer-newsletter button {
            width: 100%;
            padding: 10px;
            background-color:#165DFF;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .footer-newsletter button:hover {
            background-color: #0d47a1;
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #334155;
            text-align: center;
            color: #94a3b8;
        }
