Parent & Athlete Advisory

Girl playing soccer
Girl playing soccer
Girl playing soccer

OVERVIEW

OVERVIEW

OVERVIEW

Parent and athlete advisory is a consulting and coaching service designed to support families navigating the pressures of competitive sports. This service focuses on communication, expectations, boundaries, and decision-making to help create a healthier and more supportive performance environment for the athlete.

During advisory sessions, parents and athletes may meet together or separately, depending on needs. Conversations are structured around clarifying roles, improving communication, and addressing challenges such as pressure, motivation, burnout, or transitions in sport. The goal is to align families around shared goals and support sustainable athletic development.

<div style="background-color: #f9fafb; padding: 60px 20px; width: 100%;">
  <div style="max-width: 1200px; margin: 0 auto;">
    <h2 style="font-size: 36px; font-weight: bold; text-align: center; margin-bottom: 20px; color: #111827;">
      Key Benefits of Sports Psychology Coaching
    </h2>
    
    <p style="font-size: 18px; text-align: center; margin-bottom: 40px; color: #6b7280;">
      Develop the mental skills that separate good athletes from great ones
    </p>

    <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px;">
      <div style="background-color: white; border: 2px solid #e5e7eb; padding: 32px;">
        <div style="font-size: 48px; margin-bottom: 16px;">🎯</div>
        <h3 style="font-size: 20px; font-weight: bold; margin-bottom: 12px;">Enhanced Focus</h3>
        <p style="color: #6b7280;">Eliminate distractions and maintain concentration during critical moments</p>
      </div>

      <div style="background-color: white; border: 2px solid #e5e7eb; padding: 32px;">
        <div style="font-size: 48px; margin-bottom: 16px;">💪</div>
        <h3 style="font-size: 20px; font-weight: bold; margin-bottom: 12px;">Mental Resilience</h3>
        <p style="color: #6b7280;">Bounce back from setbacks and perform consistently under pressure</p>
      </div>

      <div style="background-color: white; border: 2px solid #e5e7eb; padding: 32px;">
        <div style="font-size: 48px; margin-bottom: 16px;">🔥</div>
        <h3 style="font-size: 20px; font-weight: bold; margin-bottom: 12px;">Peak Confidence</h3>
        <p style="color: #6b7280;">Build unshakeable self-belief and competitive mindset</p>
      </div>

      <div style="background-color: white; border: 2px solid #e5e7eb; padding: 32px;">
        <div style="font-size: 48px; margin-bottom: 16px;"></div>
        <h3 style="font-size: 20px; font-weight: bold; margin-bottom: 12px;">Emotional Control</h3>
        <p style="color: #6b7280;">Manage anxiety, frustration, and stress in high-stakes situations</p>
      </div>
    </div>
  </div>
</div>
// Paste a code snippet
import { motion } from "framer-motion";

function Component() {
    return (
        <motion.div
            transition={{ ease: "linear" }}
            animate={{ rotate: 360, scale: 2 }}
        />
    );
}