 * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; } body { background-color: #f9fafb; color: #1f2937; line-height: 1.7; padding: clamp(15px, 3vw, 25px); min-height: 100vh; } .container { background-color: white; border-radius: clamp(12px, 2vw, 16px); box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08); padding: clamp(25px, 5vw, 50px); margin: 30px auto; border: 1px solid #e5e7eb; max-width: 1200px; width: 100%; } h1 { color: #111827; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 15px; font-weight: 700; text-align: center; padding-bottom: 20px; border-bottom: 3px solid #dc2626; } h2 { color: #dc2626; font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: clamp(30px, 5vw, 40px); margin-bottom: 20px; font-weight: 600; text-align: center; } .hero-section { text-align: center; margin-bottom: clamp(30px, 5vw, 40px); padding: clamp(20px, 3vw, 30px); background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%); border-radius: 12px; } .hero-title { color: #dc2626; font-size: clamp(1.8rem, 3vw, 2.2rem); margin-bottom: 15px; font-weight: 700; } .hero-subtitle { color: #6b7280; font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 20px; } .content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)); gap: clamp(20px, 3vw, 30px); margin: 30px 0; } .feature-card { background-color: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: clamp(20px, 3vw, 30px); transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; } .feature-card:hover { border-color: #dc2626; box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15); transform: translateY(-5px); } .feature-icon { font-size: clamp(2.5rem, 4vw, 3rem); margin-bottom: 20px; color: #dc2626; } .feature-title { font-weight: bold; color: #1d4ed8; margin-bottom: 15px; font-size: clamp(1.2rem, 2vw, 1.4rem); } .feature-description { color: #4b5563; font-size: clamp(1rem, 1.5vw, 1.1rem); line-height: 1.6; } .mission-section { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); border-radius: 12px; padding: clamp(25px, 4vw, 40px); margin: 30px 0; text-align: center; } .mission-title { color: #1d4ed8; font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: 20px; font-weight: 600; } .mission-statement { color: #374151; font-size: clamp(1.1rem, 1.8vw, 1.3rem); font-style: italic; margin-bottom: 20px; line-height: 1.8; } .jersey-types { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin: 25px 0; } .jersey-tag { background-color: #dc2626; color: white; padding: 8px 20px; border-radius: 50px; font-size: clamp(0.9rem, 1.2vw, 1rem); font-weight: 500; } .benefits-section { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(15px, 2vw, 20px); margin: 30px 0; } .benefit-item { display: flex; align-items: center; padding: 15px; background-color: #f8fafc; border-radius: 10px; border-left: 4px solid #10b981; } .benefit-icon { font-size: 1.5rem; margin-right: 15px; color: #10b981; } .benefit-text { color: #374151; font-size: clamp(0.95rem, 1.3vw, 1.05rem); } .cta-section { text-align: center; margin-top: clamp(40px, 6vw, 50px); padding: clamp(25px, 4vw, 40px); background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%); color: white; border-radius: 12px; } .cta-button { display: inline-block; background-color: white; color: #dc2626; padding: clamp(12px, 2vw, 16px) clamp(25px, 4vw, 40px); text-decoration: none; border-radius: 50px; font-weight: bold; font-size: clamp(1rem, 1.5vw, 1.1rem); margin-top: 20px; transition: all 0.3s ease; border: 2px solid white; } .cta-button:hover { background-color: transparent; color: white; } .footer { margin-top: clamp(40px, 6vw, 50px); padding-top: 25px; border-top: 1px solid #d1d5db; font-size: clamp(0.85rem, 1.2vw, 0.9rem); color: #6b7280; text-align: center; } @media (max-width: 768px) { body { padding: 10px; } .container { padding: 20px; margin: 20px auto; } .content-grid { grid-template-columns: 1fr; gap: 20px; } .benefits-section { grid-template-columns: 1fr; } } @media (max-width: 480px) { .container { padding: 15px; border-radius: 10px; } .cta-section { padding: 20px; } .jersey-tag { padding: 6px 15px; font-size: 0.85rem; } } 