Changed around line 1
+ :root {
+ --primary: #FF6B00;
+ --secondary: #2D3142;
+ --accent: #4F5D75;
+ --background: #FFFFFF;
+ --text: #2D3142;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--secondary), var(--accent));
+ color: white;
+ padding: 2rem;
+ min-height: 80vh;
+ 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, var(--primary), #FFA07A);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .cta-button {
+ background: var(--primary);
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ gap: 2rem;
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ line-height: 1.2;
+ margin-bottom: 1rem;
+ }
+
+ .primary-button {
+ background: var(--primary);
+ color: white;
+ padding: 1rem 2rem;
+ border-radius: 30px;
+ text-decoration: none;
+ font-weight: 600;
+ transition: transform 0.3s ease;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .training-grid {
+ padding: 5rem 2rem;
+ }
+
+ .training-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .drill-section {
+ background: #f8f9fa;
+ padding: 5rem 2rem;
+ }
+
+ .drill-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .drill-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.05);
+ }
+
+ .difficulty {
+ margin-top: 1rem;
+ padding: 0.5rem;
+ border-radius: 20px;
+ background: #e9ecef;
+ display: inline-block;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .training-cards {
+ grid-template-columns: 1fr;
+ }
+ }