body {
            font-family: Arial, sans-serif;
            margin: 0;
            background-color: #f4f4f4;
            color: #1e1e1e;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: linear-gradient(to right, #0b3d0b, #145214);
            color: white;
            padding: 45px 20px;
            text-align: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .logo {
            width: 150px;
            border-radius: 10px;
        }

        header h1 {
            margin: 0;
            font-size: 2.5rem;
            font-weight: 800;
        }

        .phone-highlight {
            margin-top: 15px;
            display: inline-block;
            background: #ffffff;
            color: #0b3d0b;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 1.5rem;
            font-weight: bold;
            border: 3px solid #d3d3d3;
            text-decoration: none;
        }

        .download-button:hover, .phone-highlight:hover {
            background: #eaffea;
            cursor: pointer;
        }
        .download-button {
            background: #ffffff;
            color: #0b3d0b;
            padding: 14px 18px;
            padding-left: 10px;
            border-radius: 10px;
            border: 3px solid #d3d3d3;
            display: flex;
            align-items: center;
            gap: .5rem;
        }
        .link-container {
            display: flex;
            align-items: center;
            gap: .5rem;
            padding-block: .5rem;
        }
        .img-container {
            display: flex;
            max-width: 100%;
            flex-direction: column;
            padding: 1rem;
            gap: 1rem;
            background-color: #2c2c2c;
        }
        .img-container img {
            max-height: 400px;
            object-fit: cover;
        }

        /* General Section Style */
        section {
            max-width: 1000px;
            margin: 40px auto;
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        h2 {
            color: #0b3d0b;
            margin-top: 0;
            border-left: 6px solid #0b3d0b;
            padding-left: 10px;
        }

        /* Tables */
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 18px;
        }

        table th, table td {
            border-bottom: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }

        table th {
            background-color: #eef5ee;
            font-weight: bold;
        }

        /* Trainer Section */
        .trainer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

        .trainer-container img {
            width: 220px;
            border-radius: 10px;
        }

        .trainer-text {
            flex: 1;
            min-width: 260px;
        }

        footer {
            margin-top: 50px;
            background: #145214;
            color: white;
            text-align: center;
            padding: 30px;
        }
        footer a {
            color: white;
        }
        .fineprint {
            font-size: 0.8rem;
            opacity: 0.75;
            line-height: 1.4;
            margin-top: 15px;
        }