        .container-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23d1d1d1"/></svg>');
            background-size: cover;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(31, 198, 2, 0.05);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        h1 {
            /* font-size: 2.5rem; */
            /* color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700; */
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .warning-box {
            background-color: #fff8e6;
            border-left: 4px solid #ffc107;
            padding: 15px 20px;
            margin: 25px 0;
            border-radius: 0 4px 4px 0;
            text-align: left;
        }

        .warning-box strong {
            color: #e65100;
        }

        .benefits-list {
            list-style: none;
            text-align: left;
            max-width: 600px;
            margin: 30px auto 0;
            padding: 0 20px;
        }

        .benefits-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-size: 1.1rem;
        }

        .benefits-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #1fc602;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .cta-button {
            display: inline-block;
            background-color: #1fc602;
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(31, 198, 2, 0.3);
            border: none;
            cursor: pointer;
            margin-top: 20px;
        }

        .cta-button:hover {
            background-color: #1aa802;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(31, 198, 2, 0.4);
        }

        /* Section Styles */
        section {
            padding: 60px 0;
        }

        h2 {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #1fc602;
            border-radius: 2px;
        }

        h3 {
            font-size: 1.5rem;
            color: #1fc602;
            margin-bottom: 15px;
        }

        /* Working Block */
        .working-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            color: #555;
        }

        .working-list {
            list-style: none;
            max-width: 700px;
            margin: 40px auto 0;
            text-align: left;
        }

        .working-list li {
            padding: 15px 0;
            padding-left: 40px;
            position: relative;
            font-size: 1.1rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .working-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #1fc602;
            font-weight: bold;
            font-size: 1.5rem;
        }

        /* Program Structure */
        .program-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .step-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: transform 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background-color: #1fc602;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .step-card h3 {
            margin-top: 10px;
            color: #1fc602;
        }

        /* Program Details */
        .program-details {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-top: 40px;
        }

        .program-header {
            background-color: #1fc602;
            color: white;
            padding: 20px;
            text-align: center;
        }

        .program-header h3 {
            color: white;
        }

        .program-body {
            padding: 30px;
        }

        .program-info {
            margin-bottom: 25px;
        }

        .program-info h3 {
            color: #1fc602;
            margin-bottom: 10px;
        }

        .program-features {
            list-style: none;
            padding-left: 10px;
        }

        .program-features li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .program-features li::before {
            content: '•';
            color: #1fc602;
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .program-result {
            background-color: #f0f9f0;
            border-left: 4px solid #1fc602;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }

        /* Physiotherapy Block */
        .physio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .physio-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .physio-image {
            background-color: #d1d1d1;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: 500;
        }

        .physio-content {
            padding: 20px;
        }

        .physio-card a {
            text-decoration: none;
            color: black;
        }

        .physio-content h3 {
            color: #1fc602;
            margin-bottom: 10px;
        }

        .price-link {
            display: block;
            text-align: center;
            color: #1fc602;
            font-weight: 600;
            margin-top: 20px;
            text-decoration: none;
        }

        .price-link:hover {
            text-decoration: underline;
        }

        /* Form Block */
        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        /* .form-group {
            margin-bottom: 25px;
        } */

        /* .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        } */

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #1fc602;
            box-shadow: 0 0 0 3px rgba(31, 198, 2, 0.2);
        }

        .file-upload {
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .file-upload input {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-upload-btn {
            display: inline-block;
            background-color: #e9ecef;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .file-upload-btn:hover {
            background-color: #dee2e6;
        }

        .file-name {
            margin-top: 8px;
            color: #6c757d;
            font-style: italic;
        }

        .form-note {
            font-size: 0.9rem;
            color: #6c757d;
            margin-top: 10px;
            font-style: italic;
        }

        /* FAQ Block */
        .faq {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 20px;
        }

        .faq-question {
            font-weight: 600;
            color: #1fc602;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        /* Final CTA Block */
        .final-cta {
            background-color: #1fc602;
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: 30px;
            margin-bottom: 50px;
        }

        .final-cta h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .final-cta h2::after {
            background-color: white;
        }

        .contact-info {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .simple-form {
            max-width: 500px;
            margin: 30px auto 0;


        }

        .simple-form form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .simple-form input {
            padding: 12px 15px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
        }

        .simple-form label a {
            display: block;
            /* margin-bottom: 8px; */
            font-weight: 600;
            /* color: white; */
            font-size: .9rem;
            color: white;
            text-decoration: underline;
        }

        .simple-form label {
            display: flex;
            align-items: center;
            color: white;
        }

        .simple-form button {
            background-color: white;
            color: #1fc602;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .simple-form button:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }

        @media screen and (max-width: 1024px) {
            .program-steps {
                grid-template-columns: 1fr;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .hero {
                padding: 70px 0;
            }

            .program-body {
                padding: 20px;
            }

            .form-container {
                padding: 25px;
            }
        }

        .rehabilitation-form-checkbox {
            margin-top: 20px;
        }