Changed around line 1
+ :root {
+ --primary-color: #ff6b6b;
+ --secondary-color: #4ecdc4;
+ --background-light: #f8f9fa;
+ --text-color: #333;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ header {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem 0;
+ text-align: center;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ header p {
+ font-size: 1.2rem;
+ margin: 0.5rem 0 0;
+ }
+
+ nav ul {
+ list-style: none;
+ padding: 0;
+ margin: 1rem 0 0;
+ }
+
+ nav ul li {
+ display: inline;
+ margin: 0 1rem;
+ }
+
+ nav ul li a {
+ color: white;
+ text-decoration: none;
+ font-weight: bold;
+ }
+
+ .section-padding {
+ padding: 4rem 0;
+ }
+
+ .bg-light {
+ background: var(--background-light);
+ }
+
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .sports-grid, .steps-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .sport-card, .step {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ }
+
+ .sport-card h3, .step h3 {
+ margin: 0 0 1rem;
+ font-size: 1.5rem;
+ }
+
+ .sport-card p, .step p {
+ margin: 0 0 1.5rem;
+ }
+
+ .btn {
+ background: var(--secondary-color);
+ color: white;
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ font-size: 1rem;
+ }
+
+ .btn:hover {
+ background: #3aa89f;
+ }
+
+ #contact-form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ max-width: 500px;
+ margin: 0 auto;
+ }
+
+ #contact-form input, #contact-form textarea {
+ padding: 0.75rem;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 1rem 0;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ header h1 {
+ font-size: 2rem;
+ }
+
+ header p {
+ font-size: 1rem;
+ }
+
+ .sports-grid, .steps-grid {
+ grid-template-columns: 1fr;
+ }
+ }