Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --border-radius: 8px;
+ --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ padding: 2rem;
+ }
+
+ header {
+ margin-bottom: 2rem;
+ }
+
+ .search-container {
+ max-width: 800px;
+ margin: 0 auto;
+ display: flex;
+ gap: 0.5rem;
+ }
+
+ #search-box {
+ flex: 1;
+ padding: 1rem;
+ border: 2px solid #e2e8f0;
+ border-radius: var(--border-radius);
+ font-size: 1rem;
+ }
+
+ #search-button {
+ padding: 1rem 2rem;
+ background-color: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: var(--border-radius);
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ #search-button:hover {
+ background-color: var(--secondary-color);
+ }
+
+ .modules {
+ margin-bottom: 3rem;
+ }
+
+ .module-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ margin-top: 1.5rem;
+ }
+
+ .module {
+ background: white;
+ padding: 2rem;
+ border-radius: var(--border-radius);
+ box-shadow: var(--box-shadow);
+ text-align: center;
+ transition: transform 0.3s ease;
+ cursor: pointer;
+ }
+
+ .module:hover {
+ transform: translateY(-5px);
+ }
+
+ .bottom-section {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .announcements, .faq {
+ background: white;
+ padding: 2rem;
+ border-radius: var(--border-radius);
+ box-shadow: var(--box-shadow);
+ }
+
+ h2 {
+ color: var(--primary-color);
+ margin-bottom: 1.5rem;
+ }
+
+ ul {
+ list-style: none;
+ }
+
+ li {
+ padding: 0.75rem 0;
+ border-bottom: 1px solid #e2e8f0;
+ }
+
+ li:last-child {
+ border-bottom: none;
+ }
+
+ @media (max-width: 768px) {
+ body {
+ padding: 1rem;
+ }
+
+ .search-container {
+ flex-direction: column;
+ }
+
+ #search-button {
+ width: 100%;
+ }
+ }