/* CSS extracted from blogs.html */

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            min-height: 100vh;
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .container-fluid {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Hero Section */
        .hero-section {
            padding: 6rem 0 4rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.2rem;
            font-weight: bold;
            margin-bottom: 2rem;
            line-height: normal;
            background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #6b7280;
            line-height: 1.6;
        }

        /* Section Styles */
        .youtube-section {
            padding: 5rem 0;
            background: white;
        }

        .tips-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f0fdfa 0%, #f0f9ff 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 0.5rem;
            color: #2D2D2D;
            letter-spacing: 0.01em;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Custom animations and effects */
        .animate-scroll {
            animation: scroll 45s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Video Grid */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
        }

        /* Video card hover effects */
        .video-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .video-thumbnail {
            position: relative;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
        }

        .video-content {
            padding: 1.5rem;
        }

        .video-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .video-description {
            color: #6b7280;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.875rem;
            color: #9ca3af;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .play-icon {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            padding: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-icon i {
            color: #3b82f6;
            font-size: 1.5rem;
            margin-left: 2px;
        }

        .video-card:hover .play-button {
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .video-card:hover .video-overlay {
            opacity: 1;
        }

        /* Tips Grid */
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        /* Tip Cards */
        .tip-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            transition: all 0.3s ease;
            border-left: 4px solid;
        }

        .tip-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
        }

        .tip-card-blue {
            border-left-color: #3b82f6;
        }

        .tip-card-teal {
            border-left-color: #14b8a6;
        }

        .tip-card-purple {
            border-left-color: #8b5cf6;
        }

        .tip-card-green {
            border-left-color: #10b981;
        }

        .tip-card-orange {
            border-left-color: #f59e0b;
        }

        .tip-card-pink {
            border-left-color: #ec4899;
        }

        .tip-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .tip-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }

        .tip-icon-blue {
            background: #dbeafe;
            color: #3b82f6;
        }

        .tip-icon-teal {
            background: #ccfbf1;
            color: #14b8a6;
        }

        .tip-icon-purple {
            background: #ede9fe;
            color: #8b5cf6;
        }

        .tip-icon-green {
            background: #d1fae5;
            color: #10b981;
        }

        .tip-icon-orange {
            background: #fef3c7;
            color: #f59e0b;
        }

        .tip-icon-pink {
            background: #fce7f3;
            color: #ec4899;
        }

        .tip-icon i {
            font-size: 1.25rem;
        }

        .tip-category {
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .tip-category-blue {
            color: #3b82f6;
        }

        .tip-category-teal {
            color: #14b8a6;
        }

        .tip-category-purple {
            color: #8b5cf6;
        }

        .tip-category-green {
            color: #10b981;
        }

        .tip-category-orange {
            color: #f59e0b;
        }

        .tip-category-pink {
            color: #ec4899;
        }

        .tip-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .tip-content {
            color: #6b7280;
            font-size: 1.125rem;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .tip-meta {
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            color: #9ca3af;
        }

        .tip-meta i {
            margin-right: 0.5rem;
        }





        /* Appointment CTA Section */
        .appointment-cta-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            position: relative;
            overflow: hidden;
        }

        .appointment-cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .appointment-cta-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 2rem;
            padding: 3rem 2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
        }

        .appointment-cta-title {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .appointment-cta-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .appointment-cta-button {
            background: #FDC30B;
            color: #1e3a8a;
            padding: 1rem 2.5rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1.125rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 10px 25px rgba(253, 195, 11, 0.3);
        }

        .appointment-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(253, 195, 11, 0.4);
            background: #fbbf24;
        }

        .appointment-cta-button i {
            font-size: 1.25rem;
        }

        @media (max-width: 768px) {
            .appointment-cta-title {
                font-size: 1.7rem;
            }

            .appointment-cta-subtitle {
                font-size: 1.125rem;
            }

            .appointment-cta-card {
                padding: 2rem 1.5rem;
                margin: 0 1rem;
            }
        }

        /* Newsletter CTA */
        .newsletter-cta {
            text-align: center;
            margin-top: 4rem;
        }

        .newsletter-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
            padding: 2rem;
            max-width: 800px;
            margin: 0 auto;
            border-top: 4px solid #3b82f6;
        }

        .newsletter-title {
            font-size: 1.7rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .newsletter-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 1.5rem;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .newsletter-input {
            flex: 1;
            max-width: 400px;
            padding: 1rem 1.5rem;
            border-radius: 9999px;
            border: 2px solid #e5e7eb;
            font-size: 1.125rem;
            outline: none;
            transition: border-color 0.2s;
        }

        .newsletter-input:focus {
            border-color: #3b82f6;
        }

        .newsletter-button {
            background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: bold;
            font-size: 1.125rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .newsletter-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        }

        /* Subscribe Section */
        .subscribe-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #3b82f6 0%, #14b8a6 100%);
            text-align: center;
        }

        .subscribe-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .subscribe-title {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1.5rem;
        }

        .subscribe-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .youtube-button {
            background: #dc2626;
            color: white;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: bold;
            font-size: 1.125rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .youtube-button:hover {
            background: #b91c1c;
            transform: scale(1.05);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
        }

        .youtube-button i {
            font-size: 1.5rem;
        }



        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.2s;
        }

        .social-youtube {
            background: #dc2626;
        }

        .social-youtube:hover {
            background: #b91c1c;
        }

        .social-instagram {
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
        }

        .social-instagram:hover {
            background: linear-gradient(45deg, #7c3aed, #db2777);
        }

        .social-facebook {
            background: #3b82f6;
        }

        .social-facebook:hover {
            background: #2563eb;
        }

        .social-linkedin {
            background: #1e40af;
        }

        .social-linkedin:hover {
            background: #1d4ed8;
        }

        .social-handles {
            font-size: 0.875rem;
            color: #9ca3af;
        }

        .social-handles p {
            margin: 0.25rem 0;
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.125rem;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .video-grid {
                grid-template-columns: 1fr;
            }

            .tips-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 0.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input {
                width: 100%;
                max-width: none;
            }

            .newsletter-title {
                font-size: 1.3rem;
            }

            .subscribe-title {
                font-size: 1.7rem;
            }


        }

        @media (min-width: 640px) {
            .newsletter-form {
                flex-direction: row;
                justify-content: center;
            }

            .newsletter-input {
                margin-right: 1rem;
            }
        }

        /* Video Modal styles */
        .video-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
        }

        .video-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .video-modal-content {
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            max-width: 90%;
            max-height: 90%;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .video-modal iframe {
            width: 800px;
            height: 450px;
            border: none;
        }

        @media (max-width: 900px) {
            .video-modal iframe {
                width: 90%;
                max-width: 600px;
                height: calc(90vw * 9 / 16);
            }
        }
        
        .close-button {
            position: absolute;
            top: -50px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 1001;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: background 0.3s ease;
        }
        
        .close-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Youtube Stories Section */
        .youtube-stories-section {
            padding: 2rem 0 1rem 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .youtube-content {
            margin-top: 1rem;
        }

        .youtube-video-container {
            max-width: 400px;
            margin: 0 auto;
            background: transparent;
            padding: 0;
        }

        .youtube-video-wrapper {
            position: relative;
            width: 100%;
            max-width: 350px;
            margin: 0 auto;
            padding-bottom: 118.52%; /* Reduced height by 1.5 times */
            height: 0;
            overflow: hidden;
            border-radius: 2.5rem;
            background: transparent;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .youtube-video-wrapper:hover {
            transform: scale(1.02);
        }

        .youtube-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            cursor: pointer;
            text-decoration: none;
            background: transparent;
        }

        .youtube-video-overlay::after {
            content: 'Click to watch on YouTube';
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            font-size: 0.875rem;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }

        .youtube-video-wrapper:hover .youtube-video-overlay::after {
            opacity: 1;
        }

        .youtube-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .youtube-video-title {
            text-align: center;
            padding: 1rem 0;
        }

        .youtube-title-text {
            font-size: 1rem;
            font-weight: 600;
            color: #1f2937;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .youtube-video-container {
                max-width: 90%;
                padding: 0;
            }

            .youtube-video-wrapper {
                max-width: 100%;
                border-radius: 2rem;
            }

            .youtube-title-text {
                font-size: 1rem;
            }
        }
