 /* Call-To-Action Bright / Call-To-Action Dark */
        .cta-section, .cta-section-dark {
            padding: 60px 40px;
            text-align: center;
            border-radius: 15px;
            margin: 40px 0 60px;
        }
        .cta-section {
            background: #ff6b35;
            color: white;
            
        }

         .cta-section-dark {
            background: #2d3748;
            color: white;
        }

        .cta-title,.cta-title-dark  {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .cta-subtitle,.cta-subtitle-dark {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 30px;
        }

        .cta-button, .cta-button-dark {
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .cta-button:hover, .cta-button-dark:hover {
            transform: translateY(-2px);
        }
        .cta-button {
            background: white;
            color: #ff6b35;
            
        }

        .cta-button-dark {
            background: #ff6b35;
            color: white;
        }

        /* Text Content */
        .text-content h2 {
            font-size: 2.2rem;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .text-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4a5568;
            margin-bottom: 20px;
        }


    /* Image Container */
        .image-container {
            position: relative;
            background: #ff6b35;
            border-radius: 15px;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            padding: 30px 0;
            background: white;
            margin-bottom: 0px;
        }

        .page-title {
            font-size: 3rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: #718096;
            max-width: 600px;
            margin: 0 auto;
        }

         /* Large Quote Blocks */
        .large-quote {
            background: white;
            padding: 50px 40px;
            margin: 40px 0;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: relative;
            border-left: 5px solid #ff6b35;
        }

        .quote-text {
            font-size: 1.8rem;
            line-height: 1.4;
            color: #2d3748;
            font-style: italic;
            text-align: center;
            margin-bottom: 20px;
        }

        .quote-author {
            text-align: right;
            color: #718096;
            font-size: 1rem;
            font-weight: 600;
        }

        
        /* Content Sections */
        .content-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin: 30px 0;
            background: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .content-section.reverse {
            grid-template-columns: 1fr 1fr;
        }


         @media (max-width: 768px) {
           
            .page-title {
                font-size: 2.2rem;
            }
            
            .content-section {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px 20px;
            }
            
            .quote-text {
                font-size: 1.4rem;
            }
            
            .large-quote {
                padding: 30px 20px;
            }
           
        }