Changed around line 1
+ :root {
+ --primary: #1e3d59;
+ --secondary: #ff6e40;
+ --accent: #ffc13b;
+ --light: #f5f5f5;
+ --dark: #333;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ z-index: 1000;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-links a {
+ margin: 0 1rem;
+ text-decoration: none;
+ color: var(--dark);
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary);
+ }
+
+ .auth-buttons button {
+ padding: 0.5rem 1rem;
+ margin-left: 1rem;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: all 0.3s;
+ }
+
+ .btn-login {
+ background: transparent;
+ color: var(--primary);
+ border: 2px solid var(--primary);
+ }
+
+ .btn-join {
+ background: var(--primary);
+ color: white;
+ }
+
+ /* Hero Section */
+ #hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: linear-gradient(135deg, var(--primary) 0%, #2a5298 100%);
+ color: white;
+ padding: 2rem;
+ }
+
+ #hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ background: var(--secondary);
+ color: white;
+ border: none;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: transform 0.3s;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ /* Stats Section */
+ #stats {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 5rem 2rem;
+ background: var(--light);
+ }
+
+ .stat-card {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s;
+ }
+
+ .stat-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .stat-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Packages Section */
+ .package-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .package {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ transition: transform 0.3s;
+ }
+
+ .package.featured {
+ transform: scale(1.05);
+ border: 2px solid var(--accent);
+ }
+
+ /* Contact Form */
+ #contact {
+ background: var(--light);
+ padding: 5rem 2rem;
+ }
+
+ #contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ #contact-form input,
+ #contact-form textarea {
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ }
+
+ /* Animations */
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .nav-links, .auth-buttons {
+ display: none;
+ }
+
+ .hamburger {
+ display: block;
+ }
+
+ #hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .package-cards {
+ grid-template-columns: 1fr;
+ }
+ }