        body {
            font-family: 'Inter', sans-serif;
           
            color: #252B42; /* Use dark text for readability */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            line-height: 1.6;
            overflow-x: hidden; /* Prevent horizontal scroll */
        }

        .section-padding {
            padding: 6rem 0; /* Consistent vertical padding for sections */
        }

        .text-primary {
            color: white; /* Blue color for primary accents */
        }

        .text-secondary {
            color: #63b3ed; /* Light blue color for secondary accents */
        }

        .text-dark {
            color: white; /* Dark text for light backgrounds */
        }

        .text-light {
            color: #cbd5e0; /* Light gray text */
        }

        .heading-md {
            font-size: 2.5rem; /* text-4xl */
            font-weight: 700; /* font-bold */
            line-height: 1.2;
        }

        .heading-sm {
            font-size: 2rem; /* text-3xl */
            font-weight: 700;
            line-height: 1.2;
        }

        .subheading {
            font-size: 1.125rem; /* text-lg */
            color: #63b3ed;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .description-text {
            font-size: 1.125rem; /* text-lg */
            color: #cbd5e0;
        }

        .btn-base {
            padding: 0.8rem 2rem;
            border-radius: 0.375rem; /* rounded-md */
            font-weight: 600;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        /* Header specific styles */
        header {
            background-color: #252B42;
            padding: 1rem 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-name {
            font-weight: 700;
            font-size: 1.5rem;
            color: #ffffff;
            padding-left: 2rem; /* Add more left padding */
        }

        .nav-link {
            color: #cbd5e0;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #ffffff;
        }

        .btn-login {
            background-color: transparent;
            color: #ffffff;
            border: none;
        }

        .btn-login:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .btn-join-us {
            background-color: #252B42;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-join-us img {
            width: 15px;
            height: 15px;
            margin-left: 0.5rem;
            vertical-align: middle;
        }

        .btn-join-us:hover {
            background-color: #252B42;
        }

        /* Hero section specific styles */
        .hero-section {
            flex-grow: 1;
            display: flex;
            align-items: center;
            padding: 4rem 1.5rem;
            width: 100%;
            position: relative;
            overflow: hidden;
            background-color: #252B42;
        }

        .hero-content {
            flex: 1;
            max-width: 50%;
            text-align: left;
            z-index: 10;
        }

        .welcome-text {
            color: #63b3ed;
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
        }

        .hero-heading {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .hero-description {
            color: #cbd5e0;
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
            max-width: 80%;
        }

        .btn-get-quote {
            background-color: #252B42;
            color: #ffffff;
            border: none;
        }

        .btn-get-quote:hover {
            background-color: #252B42;
        }

        .btn-learn-more {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid #ffffff;
        }

        .btn-learn-more:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Image section styles */
        .hero-images {
            position: relative;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 500px;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 80%;
            background-color: #252B42;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .image-overlay img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-overlay-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50%;
            height: 45%;
            background-color: #252B42;
            border-radius: 1rem;
            overflow: hidden;
            transform: translate(-20%, 20%);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            z-index: 3;
            
        }

        .image-overlay-bottom img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border:5px solid #fff;
        }

        .decorative-square {
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background-color: #252B42;
            border-bottom-left-radius: 1rem;
            transform: translate(20%, -20%);
            z-index: 0;
        }

        /* --- Watch Our Courses Section (custom, centralized) --- */
        .watch-courses-fullwidth-bg {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: #fff;
        }
        .watch-courses-section {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            min-height: 600px;
            gap: 0;
            background: transparent;
        }
        .watch-courses-content {
            width: 420px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .watch-courses-underline {
            height: 6px;
            width: 60px;
            background: #252B42;
            border-radius: 2px;
            margin-bottom: 1.5rem;
        }
        .watch-courses-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #232d3c;
        }
        .watch-courses-desc {
            margin-bottom: 2.5rem;
            color: #232d3c;
        }
        .watch-courses-link {
            color: #2196f3;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }
        .watch-courses-link:hover {
            text-decoration: underline;
        }
        .watch-courses-link img {
            width: 20px;
            height: 20px;
            margin-left: 0.5rem;
            vertical-align: middle;
        }
        .watch-courses-cards-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 2.5rem;
            /* margin-left: -15vw;  Remove negative margin to prevent overflow */
        }
        .watch-courses-cards-col {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .course-card {
            background: #fff;
            padding: 2.5rem 2rem 2rem 2rem;
            border-radius: 1rem;
            box-shadow: 0 8px 24px rgba(44,62,80,0.08);
            width: 320px;
        }
        .course-card .icon-bg {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }
        .icon-bg-blue { background: #b3e0fc; }
        .icon-bg-green { background: #b6f5c3; }
        .icon-bg-red { background: #ffe0db; }
        .course-card-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: #232d3c;
            margin-bottom: 0.5rem;
        }
        .course-card-underline {
            height: 4px;
            width: 40px;
            background: #252B42;
            border-radius: 2px;
            margin-bottom: 1rem;
        }
        .course-card-desc {
            color: #6b7280;
            font-size: 0.98rem;
        }
        .course-card-market {
            margin-top: 70px;
        }

        /* --- Featured Products Hero Section (custom, centralized) --- */
        .featured-products-hero-section {
            background-color: #e2f0ff;
            color: #232d3c;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 600px;
            padding: 6rem 0;
        }
        .featured-products-hero-container {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1200px;
            gap: 4rem;
        }
        .featured-products-image-wrapper {
            position: relative;
            width: 400px;
            height: 400px;
            flex-shrink: 0;
        }
        .featured-products-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 2rem;
            z-index: 2;
            position: relative;
        }
        .featured-products-deco-top {
            position: absolute;
            top: -32px;
            right: -32px;
            width: 80px;
            height: 80px;
            background: #252B42;
            border-top-right-radius: 1.5rem;
            z-index: 1;
        }
        .featured-products-deco-bottom {
            position: absolute;
            left: -32px;
            bottom: -32px;
            width: 48px;
            height: 48px;
            background: #252B42;
            border-radius: 50rem;
            z-index: 1;
        }
        .featured-products-hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            min-width: 340px;
        }
        .featured-products-hero-underline {
            height: 6px;
            width: 60px;
            background: #252B42;
            border-radius: 2px;
            margin-bottom: 1.5rem;
        }
        .featured-products-hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #232d3c;
        }
        .featured-products-hero-desc {
            margin-bottom: 2.5rem;
            color: #232d3c;
            font-size: 1.1rem;
        }
        .featured-products-hero-link {
            color: #2196f3;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }
        .featured-products-hero-link:hover {
            text-decoration: underline;
        }
        /* --- Featured Products Product Grid Section --- */
        .featured-products-section {
            background-color: #fff;
            color: #232d3c;
            text-align: left;
            padding: 6rem 0 0 0;
            position: relative;
        }
        .featured-products-header {
            max-width: 700px;
            margin-left: 64px;
            margin-right: auto;
            margin-top: 0.5rem;
            margin-bottom: 2.5rem;
            text-align: left;
        }
        .featured-products-header .subheading {
            display: block;
            color: #3182ce;
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        .featured-products-header .heading-md {
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #232d3c;
            line-height: 1.1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .featured-products-header .description-text {
            color: #6b7280;
            text-align: left;
            font-size: 1.08rem;
            margin-bottom: 0;
            line-height: 1.3;
        }
        .featured-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 0;
        }
        .product-card {
            background-color: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 4px 16px rgba(44,62,80,0.10);
            overflow: hidden;
            text-align: left;
            display: flex;
            flex-direction: column;
            padding-bottom: 1.5rem;
        }
        .product-card-image-wrapper {
            position: relative;
            width: 100%;
            height: 50%;
            overflow: hidden;
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
        }
        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
        }
        .product-sale-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
        }
        .product-sale-badge img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .product-card-icons {
            position: absolute;
            bottom: -24px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 2;
        }
        .product-card-icon-btn {
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(44,62,80,0.10);
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.2s;
            margin-bottom: 3rem;
        }
        .product-card-icon-btn:hover {
            background: #f3f4f6;
        }
        .product-card-content {
            padding: 2.5rem 1.5rem 0 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .product-card-category {
            color: #2196f3;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .product-card-title-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .product-card-title {
            font-weight: 700;
            font-size: 1.25rem;
            color: #232d3c;
        }
        .product-card-rating-badge {
            display: flex;
            align-items: center;
            background: #232d3c;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 700;
            border-radius: 999px;
            padding: 0.25rem 0.75rem;
            gap: 0.4rem;
        }
        .product-card-rating-badge img {
            width: 20px;
            height: 20px;
            display: inline-block;
            vertical-align: middle;
            object-fit: contain;
            margin-right: 0.5rem;
            margin-bottom: 0.1rem;
        }
        .product-card-description {
            color: #6b7280;
            font-size: 1rem;
            margin-bottom: 1.25rem;
        }
        .product-card-sales {
            font-size: 1rem;
            color: #232d3c;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        .product-card-price {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.25rem;
        }
        .product-card-price .old-price {
            text-decoration: line-through;
            color: #b0b0b0;
            font-size: 1rem;
        }
        .product-card-price .new-price {
            color: #28a745;
            font-weight: 700;
            font-size: 1.25rem;
        }
        .product-card-info {
            display: flex;
            justify-content: flex-start;
            gap: 2rem;
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 1.5rem;
        }
        .product-card-info span {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
      
        .product-card .learn-more-btn {
            background-color: #2196f3;
            border: none;
            color: #fff;
            padding: 0.9rem 0;
            border-radius: 999px;
            font-weight: 700;
            width: 100%;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, color 0.3s ease;
            margin-top: auto;
        }
        .product-card .learn-more-btn:hover {
            background-color: #1769aa;
            color: #fff;
        }

        /* Testimonials Section */
        .testimonials-section {
            background-color: #1a202c; /* Dark background */
            color: #ffffff;
            text-align: center;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background-color: #ffffff;
            color: #333;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .testimonial-card .stars img {
            width: 120px;
            height: auto;
            display: block;
            border-radius: 0 !important; /* Only affects the stars image */
        }

        .testimonial-card p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: #555;
        }

        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 0.75rem;
        }

        .testimonial-card .client-name {
            font-weight: 700;
            color: #1a202c;
            font-size: 1.125rem;
        }

        .testimonial-card .client-title {
            font-size: 0.9rem;
            color: #666;
        }

        /* Join Us Section (Call to Action) */
        .join-us-cta-section {
            background-color: #ffffff; /* Light background */
            color: #333;
            text-align: center;
        }

        .join-us-cta-section .subheading {
            color: #63b3ed;
        }

        .join-us-cta-section .heading-md {
            color: #1a202c;
            margin-bottom: 1rem;
        }

        .join-us-cta-section .description-text {
            color: #666;
            max-width: 600px;
            margin: 0 auto 2rem auto;
        }

        .subscribe-form {
            display: flex;
            justify-content: center;
            gap: 0; /* Remove gap between input and button */
            max-width: 500px;
            margin: 0 auto;
            border-radius: 0.375rem;
            overflow: hidden; /* Ensures input and button corners are rounded together */
            border: 1px solid #ddd; /* Add a subtle border to the group */
        }

        .subscribe-form input[type="email"] {
            flex-grow: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            outline: none;
            font-size: 1rem;
            color: #333;
        }

        .subscribe-form button {
            background-color: #3182ce;
            color: #ffffff;
            padding: 0.8rem 1.5rem;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .subscribe-form button:hover {
            background-color: #2b6cb0;
        }
        
        
        /* Footer Section */
        footer.site-footer {
            background-color: white;
            color: #ffffff;
            padding: 4rem 0 2rem 0;
            text-align: left;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
            gap: 3rem;
            align-items: flex-start;
            margin-bottom: 2.5rem;
        }
        .footer-column {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-column h4 {
            font-weight: 700;
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
            color: black;
        }
        .footer-column p, .footer-column a {
            color: black;
            font-size: 0.95rem;
            text-decoration: none;
            margin-bottom: 0.75rem;
            display: block;
            
        }
        .footer-column a:hover {
            text-decoration: underline;
        }
        .footer-column .social-icons {
            margin-top: 2.5rem;
            display: flex;
            gap: 1.5rem;
        }
        .footer-column .social-icons a img {
            width: 28px;
            height: 28px;
        }
        .footer-grid .footer-column:nth-child(2),
        .footer-grid .footer-column:nth-child(3) {
            align-items: left;
           
        }
        .footer-grid .footer-column:last-child {
            align-items:left;
            
        }
        .copyright {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: black;
            font-size: 0.95rem;
        }
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            .footer-grid .footer-column {
                align-items: flex-start !important;
                text-align: left !important;
            }
        }
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .footer-column {
                align-items: flex-start !important;
                text-align: left !important;
            }
            .footer-column .social-icons {
                margin-top: 1.5rem;
            }
        }
        /* Auth Containers (Login/Register/ThankYou) */
        .auth-container {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 400px;
            text-align: left;
            margin-top: 50px; /* Space from header */
            margin-bottom: 50px; /* Space to footer */
            color: #333; /* Dark text for light background */
        }

        .auth-container h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #007bff;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="password"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-sizing: border-box; /* Include padding in width */
        }

        .auth-container button[type="submit"] {
            width: 100%;
            background-color: #007bff;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }

        .auth-container button[type="submit"]:hover {
            background-color: #0056b3;
        }

        .switch-form {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
        }

        .switch-form a {
            color: #007bff;
            text-decoration: none;
            cursor: pointer; /* Indicate it's clickable */
        }

        .switch-form a:hover {
            text-decoration: underline;
        }

        .thankyou-container {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 500px;
            text-align: center;
            margin-top: 50px;
            margin-bottom: 50px;
            color: #333;
        }

        .thankyou-container h2 {
            color: #28a745;
            margin-bottom: 20px;
        }

        .thankyou-container p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) { /* md breakpoint */
            .hero-section {
                flex-direction: column;
                text-align: center;
                padding-top: 2rem;
                padding-bottom: 2rem;
            }

            .hero-content {
                max-width: 100%;
                margin-bottom: 3rem;
            }

            .hero-heading {
                font-size: 2.5rem;
            }

            .hero-description {
                max-width: 90%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-images {
                width: 100%;
                height: 400px;
            }

            .image-overlay {
                width: 60%;
                height: 70%;
            }

            .image-overlay-bottom {
                width: 40%;
                height: 40%;
                transform: translate(-10%, 10%);
            }

            .watch-courses-section {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .watch-courses-content {
                max-width: 100%;
                text-align: center;
            }

            .watch-courses-cards {
                min-width: unset; /* Remove min-width for smaller screens */
                width: 100%;
            }

            .featured-products-grid, .testimonials-grid, .footer-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) { /* sm breakpoint */
            .nav-links, .auth-buttons {
                display: none; /* Hide for mobile by default, could add a hamburger menu */
            }

            .nav-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .nav-container .brand-name {
                margin-bottom: 1rem;
              
            }

            .hero-heading {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-btn {
                width: 100%;
            }

            .hero-images {
                height: 300px;
            }

            .image-overlay {
                width: 70%;
                height: 80%;
            }

            .image-overlay-bottom {
                width: 50%;
                height: 50%;
                transform: translate(-15%, 15%);
            }

            .subscribe-form {
                flex-direction: column;
                border: none; /* Remove border when stacked */
            }

            .subscribe-form input, .subscribe-form button {
                border-radius: 0.375rem;
                width: 100%;
                margin-bottom: 0.5rem;
            }

            .subscribe-form input {
                border: 1px solid #ddd; /* Add border back to input */
            }
        }

        @media (max-width: 480px) {
            .hero-heading {
                font-size: 1.75rem;
            }
            .hero-description {
                font-size: 0.9rem;
            }
            .image-overlay {
                width: 80%;
                height: 90%;
            }
            .image-overlay-bottom {
                width: 60%;
                height: 60%;
                transform: translate(-10%, 10%);
            }
            .heading-md {
                font-size: 2rem;
            }
            .heading-sm {
                font-size: 1.75rem;
            }
            .section-padding {
                padding: 4rem 0;
            }
        }

        .product-card-icon-btn img,
        .product-card-rating-badge img,
        .product-card-sales img,
        .product-card-info img {
            width: 15px;
            height: 20px;
            display: inline-block;
            vertical-align: middle;
            object-fit: contain;
            margin-right: 0.5rem;
            margin-bottom: 0.1rem;
        }
        .product-card-icon-btn img {
            margin-right: 0;
            margin-bottom: 0;
        }
        .social-icons a img {
            width: 24px;
            height: 24px;
            vertical-align: middle;
        }
        .icon-bg img {
            width: 32px;
            height: 32px;
            vertical-align: middle;
        }
        .btn-base.btn-learn-more{
            color: #3182ce;
            border: 1px solid #3182ce;
        }
        .watch-courses-link img{
            width: 15px;
            height: 15px;
            
        }