
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background: #006634;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            text-align: center;
            margin-top: 10px;
            margin-bottom: 10px;
            padding: 40px 0;
            color: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .header h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .header p {
            font-size: 1.2em;
            opacity: 0.9;
        }
        
        .coaches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            margin-top: 30px;
            margin-bottom: 50px;
        }
        
        .coach-card {
            background: #f0f8f0;
            color: #333!important;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .coach-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #f0f8f0, #fff);
        }
        
        .coach-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .coach-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
           color: #313131;
        }
        
        .coach-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 4px solid #fff;
        }
        
        .coach-info h3 {
            font-size: 1.5em;
           color: #313131;
            margin-bottom: 5px;
        }
        
        .coach-qualification {
           color: #313131;
            font-weight: 600;
            font-size: 0.9em;
        }
        
        .coach-description {
           color: #313131;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .schedule-section {
            margin-bottom: 25px;
        }
        
        .schedule-title {
            font-size: 1.2em;
            font-weight: 600;
           color: #313131;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #12A75E;
        }
        
        .schedule-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .schedule-table th,
        .schedule-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
            color: #313131;
        }
        
        .schedule-table th {
            background: #006634;
            color: white;
            font-weight: 600;
        }
        
        .schedule-table tr:hover {
            background: #f1f3f4;
        }
        
        .price {
            font-weight: 600;
            color: #006634;
        }
        
        .notes {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            color: #856404;
        }
        
        .achievement {
            background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
            color: #2d3436;
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            font-weight: 600;
            text-align: center;
        }
        
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        .floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
        .floating-element:nth-child(3) { bottom: 10%; left: 20%; animation-delay: 4s; }
        .floating-element:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 1s; }
        
        @media (max-width: 768px) {
            .coaches-grid {
                grid-template-columns: 1fr;
            }
            
            .coach-header {
                flex-direction: column;
                text-align: center;
            }
            
            .coach-image {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .container {
                padding: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .schedule-table {
                font-size: 0.9em;
            }
            
            .schedule-table th,
            .schedule-table td {
                padding: 10px;
            }
        }

   


