Changed around line 1
+ :root {
+ --primary-color: #2a6b9c;
+ --secondary-color: #4a90e2;
+ --background-color: #f0f4f8;
+ --text-color: #333;
+ --glass-color: rgba(255, 255, 255, 0.9);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ background: linear-gradient(135deg, #f0f4f8 0%, #d7e3ec 100%);
+ color: var(--text-color);
+ }
+
+ .glass-panel {
+ background: var(--glass-color);
+ backdrop-filter: blur(10px);
+ border-radius: 20px;
+ padding: 2rem;
+ box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
+ margin: 2rem;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(5px);
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ main {
+ padding-top: 80px;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ #hero {
+ text-align: center;
+ padding: 4rem 2rem;
+ }
+
+ h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .slider-group label {
+ display: block;
+ margin: 1.5rem 0;
+ }
+
+ .slider {
+ width: 100%;
+ height: 8px;
+ -webkit-appearance: none;
+ background: #ddd;
+ border-radius: 4px;
+ outline: none;
+ margin: 10px 0;
+ }
+
+ .slider::-webkit-slider-thumb {
+ -webkit-appearance: none;
+ width: 20px;
+ height: 20px;
+ background: var(--secondary-color);
+ border-radius: 50%;
+ cursor: pointer;
+ transition: background 0.3s;
+ }
+
+ .glow-button {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 30px;
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: all 0.3s;
+ margin: 2rem 0;
+ }
+
+ .glow-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
+ }
+
+ .fields-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .field-card {
+ padding: 1.5rem;
+ border-radius: 15px;
+ background: white;
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s;
+ }
+
+ .field-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .university-list {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 1.5rem;
+ margin-top: 2rem;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ margin-top: 4rem;
+ background: var(--glass-color);
+ backdrop-filter: blur(10px);
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .nav-links {
+ margin-top: 1rem;
+ }
+
+ .nav-links a {
+ margin: 0 1rem;
+ }
+
+ h1 {
+ font-size: 2rem;
+ }
+
+ .glass-panel {
+ margin: 1rem;
+ padding: 1rem;
+ }
+ }