Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --background-color: #f5f5f5;
+ --text-color: #333;
+ --link-color: #2980b9;
+ }
+
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background-color: var(--background-color);
+ color: var(--text-color);
+ }
+
+ .top-bar {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 1rem;
+ position: sticky;
+ top: 0;
+ z-index: 1000;
+ }
+
+ .top-bar nav ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ display: flex;
+ justify-content: space-around;
+ }
+
+ .top-bar nav ul li a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ transition: color 0.3s ease;
+ }
+
+ .top-bar nav ul li a:hover {
+ color: var(--secondary-color);
+ }
+
+ .section {
+ padding: 2rem;
+ margin: 1rem;
+ background-color: white;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ }
+
+ h1 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ }
+
+ #contact-form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ #contact-form input,
+ #contact-form textarea {
+ padding: 0.5rem;
+ border: 1px solid #ddd;
+ border-radius: 4px;
+ }
+
+ #contact-form button {
+ background-color: var(--secondary-color);
+ color: white;
+ padding: 0.5rem;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ #contact-form button:hover {
+ background-color: var(--primary-color);
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ background-color: var(--primary-color);
+ color: white;
+ }
+
+ .social-links {
+ list-style: none;
+ padding: 0;
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .social-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ @media (max-width: 768px) {
+ .top-bar nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .section {
+ margin: 0.5rem;
+ padding: 1rem;
+ }
+ }