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

        body {
            font-family: 'IBM Plex Sans', sans-serif;
            line-height: 1.6;
            color: #2b2b2b;
            background-color: #ffffff;
            font-size: 16px;
        }

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

        /* Header Styles */
        .header {
            background-color: #fff;
            border-bottom: 1px solid #fff;
            padding: 16px 0;
            position: relative;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header h1 {
            font-family: 'Caveat', cursive;
            font-size: 30px;
            font-weight: 600;
            color: #000;
            letter-spacing: -0.02em;
        }

        .nav a {
            text-decoration: none;
            color: #000;
            font-weight: 400;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 8px;
            transition: color 0.2s ease;
            border-bottom: 2px solid transparent;
            
        }

        .nav a:hover{
            color: rgba(26, 26, 26, 0.6);
        }
        .nav .current {
             border-bottom-color: #000;
        }

        /* Main Content */
        .main {
            padding: 0px 0;
        }

        .photo{
            width:150px;
            height:150px;
            border-radius: 150px;
        }

        /* Bio Section */
        .bio {
            padding: 80px 0;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }

        
        .bio p {
            font-size: 24px;
            line-height: 1.7;
            color: #2b2b2b;
            max-width: 720px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Blog Posts Section */
        .blog-posts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .blogpost {
            background-color: #ffffff;
            border: 1px solid #e8e8e8;
            border-radius: 4px;
            padding: 24px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
            align-items: left;
            text-align: left;
        }

        .blogpost:hover {
            transform: translateY(-2px);
            border-color: #d0d0d0;
        }

        .blogpost img {
            width:100%;
            max-width:100%;
            height:auto;
            border-radius: 10px;
            object-fit: cover;
            margin-bottom: 16px;
            border: 2px solid #f5f5f5;
        }

        .blogpost h3 {
            margin-bottom: 12px;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.3;
        }

        .blogpost h3 a {
            color: #1a1a1a;
            transition: color 0.2s ease;
        }

        .blogpost h5{
            margin-top:16px;
            color: #1a1a1a;
            font-weight:450;
        }

        .blogpost p {
            color: #666666;
            line-height: 1.6;
            font-size: 16px;
            font-weight: 400;
        }

        /* Section Headings */
        .section-heading {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 32px;
            text-align: center;
            letter-spacing: -0.01em;
        }
        
         /* Footer Styles */
        .footer {
            background-color: #f8f9fa;
            border-top: 1px solid #e8e8e8;
            padding: 40px 0;
            margin-top: 80px;
        }

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

        .footer p {
            color: #666666;
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 12px;
        }

        .footer .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 16px;
        }

        .footer .social-links a {
            color: #666666;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: color 0.2s ease;
        }

        .footer .social-links a:hover {
            color: #3366cc;
        }
        .section-heading {
            font-size: 28px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 36px;
            text-align: center;
            letter-spacing: -0.01em;
        }
        
        .title-block {
                display: flex;
                flex-direction: column;
                gap: 0px; /* or 0, or whatever spacing you want */
        }
        
        .title-block p{
                font-size:15px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .header{
                position: relative;
            }
            .header .container {
                flex-direction: column;
                gap: 24px;
            }

            .header h1 {
                font-size: 30px;
            }

            .main {
                padding: 10px 40px;
            }

            .bio {
                padding: 60px 0;
                margin-bottom: 60px;
            }

            .bio p {
                font-size: 21px;
                line-height: 1.6;
            }

            .blog-posts {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .blogpost {
                padding: 20px;
            }

            .section-heading {
                font-size: 22px;
            }

            .container {
                padding: 0 0px;
            }

            .title-block {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0px; /* or 0, or whatever spacing you want */
        }
        
             .title-block p{
                font-size:13px;
        }
        }

        @media (max-width: 480px) {

            .header{
                position: relative;
            }
            
            .blogpost img {
                width:100%;
                max-width:100%;
            }

            .blogpost h3 {
                font-size: 18px;
            }

             .blogpost p {
                font-size: 16px;
            }

            .main {
                padding: 0px 40px;
            }

            .bio p {
                font-size: 20px;
            }

            .section-heading {
                font-size: 20px;
            }

            .title-block {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0px; /* or 0, or whatever spacing you want */
        }
        
             .title-block p{
                font-size:13px;
        }
        }

        
