@charset "utf-8";
/* CSS Document */

        /* Banner Container */
        .bannerC {
            width: 100%;
            min-height: 500px;
            padding: 4rem 2rem;
            position: relative;
            display: flex;
            align-items: center;
            background-image: url('../cubed-glass-banner.webp');  /* was background-image: url('adhd-treatment-large.webp'); */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
        }

        /* Add default overlay */
        .bannerC::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        /* Content Container */
        .bannerC-content {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            z-index: 1;
        }

        /* Text Styles */
        .bannerC-tag {
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            color: #ffffff;
			border-bottom: 2px solid #43c7e7;
    		display: inline-block;
    		padding-bottom: 0.5rem;
        }

        .bannerC-heading {
            font-family: 'Montserrat', "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; 
            font-size: 4.5rem;
			color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

		.bannerC-heading.blue {
			color: #43c7e7;
        }

        .bannerC-text {
            font-size: 1.6rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        /* Button Styles */
        .bannerC-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btnC {
            padding: 1.5rem 3rem;
            border-radius: 0px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btnC-primary {
            background-color: #43c7e7;
            color: white;
            border: none;
        }

        .btnC-outline {
            border: 1px solid white;
            color: white;
            background: transparent;
        }

        .btnC-primary:hover {
            background-color: white;
            color: #43c7e7;
        }

        .btnC-outline:hover {
            background-color: white;
            color: #43c7e7;
        }

        /* Alignment Classes */
        .text-left {
            text-align: left;
        }

        .text-center {
            text-align: center;
        }

        .text-right {
            text-align: right;
        }

        .buttonsC-left {
            justify-content: flex-start;
        }

        .buttonsC-center {
            justify-content: center;
        }

        .buttonsC-right {
            justify-content: flex-end;
        }

         /* Responsive */
        @media (max-width: 768px) {
            .bannerC {
                padding: 3rem 1rem;
                text-align: center;  /* Center all text on mobile */
                justify-content: center;  /* Center flex content horizontally */
            }
            
            .bannerC-content {
                display: flex;
                flex-direction: column;
                align-items: center;  /* Center content horizontally */
            }
            
            .bannerC-heading {
                font-size: 2.5rem;
                text-align: center;
            }
            
            .bannerC-text {
                text-align: center;
                margin-left: auto;  /* Center the text block */
                margin-right: auto;
            }
            
            .bannerC-buttons {
                justify-content: center;  /* Center buttons */
                width: 100%;  /* Ensure full width for proper centering */
            }
            
            /* Override alignment classes on mobile */
            .text-left, .text-right {
                text-align: center !important;
            }
            
            .buttonsC-left, .buttonsC-right {
                justify-content: center !important;
            }
        }