Changed around line 1
+ :root {
+ --primary: #ff85a2;
+ --secondary: #ffd6e0;
+ --accent: #ff4785;
+ --text: #333;
+ --light: #fff9fb;
+ --dark: #1a1a2e;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ color: var(--text);
+ line-height: 1.6;
+ background-color: var(--light);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--secondary), var(--primary));
+ color: white;
+ padding: 2rem 1rem;
+ text-align: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ color: white;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: all 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--dark);
+ }
+
+ .cta-button {
+ background-color: var(--dark);
+ padding: 0.5rem 1rem;
+ border-radius: 2rem;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background-color: white;
+ color: var(--dark);
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 4rem auto;
+ padding: 2rem;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ animation: fadeIn 1.5s ease;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background-color: var(--dark);
+ color: white;
+ padding: 0.8rem 2rem;
+ border-radius: 2rem;
+ text-decoration: none;
+ font-weight: bold;
+ transition: all 0.3s ease;
+ animation: fadeIn 2s ease;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 2rem 1rem;
+ }
+
+ section {
+ padding: 4rem 0;
+ }
+
+ h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ color: var(--accent);
+ }
+
+ .about .intro {
+ max-width: 800px;
+ margin: 0 auto 3rem;
+ font-size: 1.2rem;
+ text-align: center;
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .stat-card {
+ text-align: center;
+ padding: 2rem;
+ background-color: white;
+ border-radius: 1rem;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.05);
+ transition: transform 0.3s ease;
+ }
+
+ .stat-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .stat-number {
+ font-size: 3rem;
+ font-weight: bold;
+ color: var(--accent);
+ margin-bottom: 0.5rem;
+ }
+
+ .gallery {
+ background-color: var(--secondary);
+ margin: 4rem 0;
+ padding: 4rem 1rem;
+ }
+
+ .photo-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1rem;
+ }
+
+ .photo-card {
+ height: 250px;
+ border-radius: 1rem;
+ overflow: hidden;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .photo-card:hover {
+ transform: scale(1.03);
+ }
+
+ .photo-1, .photo-2, .photo-3, .photo-4 {
+ height: 100%;
+ background-size: cover;
+ background-position: center;
+ }
+
+ .photo-1 {
+ background-color: #ffcce0;
+ }
+
+ .photo-2 {
+ background-color: #ffb3d9;
+ }
+
+ .photo-3 {
+ background-color: #ff99cc;
+ }
+
+ .photo-4 {
+ background-color: #ff80bf;
+ }
+
+ .tip-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .tip-card {
+ background-color: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.05);
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .tip-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .tip-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .tip-card h3 {
+ color: var(--accent);
+ margin-bottom: 1rem;
+ }
+
+ .contact {
+ background-color: var(--secondary);
+ padding: 4rem 1rem;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ background-color: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.05);
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ .form-group label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 1px solid #ddd;
+ border-radius: 0.5rem;
+ font-family: inherit;
+ }
+
+ .form-group textarea {
+ min-height: 150px;
+ }
+
+ .submit-button {
+ background-color: var(--accent);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 2rem;
+ font-weight: bold;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ width: 100%;
+ }
+
+ .submit-button:hover {
+ background-color: var(--dark);
+ }
+
+ footer {
+ background-color: var(--dark);
+ color: white;
+ padding: 3rem 1rem;
+ text-align: center;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 2rem;
+ }
+
+ .footer-logo {
+ font-size: 2rem;
+ font-weight: bold;
+ }
+
+ .social-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .social-links a:hover {
+ color: var(--primary);
+ }
+
+ footer p {
+ opacity: 0.8;
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .stats-grid {
+ grid-template-columns: 1fr;
+ }
+ }