Changed around line 1
+ :root {
+ --primary-color: #1a4b8c;
+ --secondary-color: #f0f4f8;
+ --accent-color: #e63946;
+ --text-color: #2b2d42;
+ --light-text: #ffffff;
+ }
+
+ * {
+ 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);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), #2a6ed0);
+ color: var(--light-text);
+ padding: 2rem;
+ min-height: 60vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, #fff, #e0e0e0);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--light-text);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ .hero-content {
+ text-align: center;
+ margin: auto;
+ max-width: 800px;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .search-container {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin-top: 2rem;
+ }
+
+ .search-container input {
+ padding: 1rem;
+ width: 60%;
+ border: none;
+ border-radius: 5px;
+ font-size: 1rem;
+ }
+
+ .search-container button {
+ padding: 1rem 2rem;
+ background: var(--accent-color);
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: transform 0.2s ease;
+ }
+
+ .search-container button:hover {
+ transform: scale(1.05);
+ }
+
+ .info-section {
+ padding: 4rem 2rem;
+ }
+
+ .card-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .info-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .info-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .transport-options {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .transport-card {
+ background: var(--secondary-color);
+ padding: 2rem;
+ border-radius: 10px;
+ text-align: center;
+ }
+
+ .services-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .service-item {
+ text-align: center;
+ padding: 2rem;
+ background: var(--secondary-color);
+ border-radius: 10px;
+ }
+
+ .tips-container {
+ max-width: 800px;
+ margin: 2rem auto;
+ }
+
+ .tips-list li {
+ margin-bottom: 1rem;
+ padding: 1rem;
+ background: var(--secondary-color);
+ border-radius: 5px;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: var(--light-text);
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ color: var(--light-text);
+ text-decoration: none;
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .search-container {
+ flex-direction: column;
+ }
+
+ .search-container input {
+ width: 100%;
+ }
+ }