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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

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

        /* Header Styles */
        .header {
            background-color: #052962;
            color: white;
            padding: 20px 0;
            border-bottom: 3px solid #ff5943;
        }

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

        .logo-text {
            font-size: 2.5rem;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .tagline {
            font-size: 0.9rem;
            margin-top: 5px;
            opacity: 0.8;
        }


        .tabs {
            display: flex;
            overflow-x: auto;
            white-space: nowrap;
        }

        .tab {
            padding: 15px 20px;
            cursor: pointer;
            border-right: 1px solid #ddd;
            transition: background-color 0.3s;
            font-weight: 500;
        }

        .tab:hover,
        .tab.active {
            background-color: #ff5943;
            color: white;
        }

        /* Main Content Styles */
        .main-content {
            padding: 40px 0;
        }

        /* Featured Article */
        .featured-article {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 2px solid #eee;
        }

        .article-image,
        .post-image {
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f9f9f9;
            font-size: 14px;
            color: #666;
            font-weight: bold;
        }

        .category,
        .post-category {
            color: #ff5943;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-title {
            font-size: 2.2rem;
            margin: 10px 0 15px 0;
            line-height: 1.3;
        }

        .article-excerpt {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #555;
        }

        .article-meta,
        .post-meta {
            display: flex;
            gap: 15px;
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
        }

        .pdf-download {
            background-color: #ff5943;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background-color 0.3s;
        }

        .pdf-download:hover {
            background-color: #e04833;
        }

        /* Advertisement Section */
        .image-placement-row {
            margin: 40px 0;
            text-align: center;
        }

        .image-placement-row2 {
            margin: 40px 0;
            text-align: center;
        }

        .image-placeholder.wide {
            position: relative;
            width: 100%;
            height: 280px;
            margin: 0 auto;
            background-color: #f9f9f9;
            overflow: hidden;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
        }   

        .image-placeholder.wide2 {
            position: relative;
            width: 50%;
            height: 280px;
            margin: 0 auto;
            background-color: #f9f9f9;
            overflow: hidden;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
        }  

        .image-placeholder img{
            width: 80%;
            height: 90%;
        }

        .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .placeholder-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 14px;
            z-index: 2;
        }

        .image-placeholder.wide small {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 4px 8px;
            border-radius: 3px;
            font-size: 10px;
            z-index: 2;
        }

        /* Related Posts */
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #052962;
            border-left: 4px solid #ff5943;
            padding-left: 15px;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .post-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }

        .post-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .post-content {
            padding: 20px;
        }

        .post-title {
            font-size: 1.3rem;
            margin: 10px 0 12px 0;
            line-height: 1.4;
        }

        .post-excerpt {
            color: #555;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        /* Comments Section */
        .comments-section {
            background-color: #f9f9f9;
            padding: 40px;
            border-radius: 10px;
            margin-top: 40px;
        }

        .avatar-image{
            border-radius: 50%;
            background-color: peachpuff; 
            padding: 13px;
            width: 50px;
            height: 50px;
        }
        .comment-form {
            margin-bottom: 40px;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .comment-form h3 {
            margin-bottom: 20px;
            color: #052962;
        }

        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .comment-form textarea {
            height: 120px;
            resize: vertical;
        }

        .comment-form button {
            background-color: #052962;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
        }

        .comment-form button:hover {
            background-color: #041f4f;
        }

        .comment {
            background: white;
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 1px 5px rgba(0,0,0,0.1);
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .comment-date {
            color: #666;
            font-size: 0.8rem;
        }


        /* Footer */
        .footer {
            background-color: #052962;
            color: white;
            padding: 30px 0;
            margin-top: 60px;
        }

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

        .footer .logo-text {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .logo-text {
                font-size: 1.8rem;
            }

            .featured-article {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 40px;
            }

            .article-title {
                font-size: 1.8rem;
            }

            .image-placeholder.wide {
                height: 150px;
                max-width: 100%;
            }

            .placeholder-text {
                font-size: 12px;
                padding: 6px 12px;
            }

            .image-placeholder.wide small {
                font-size: 9px;
                padding: 3px 6px;
            }

            .tabs {
                justify-content: flex-start;
            }

            .tab {
                padding: 12px 15px;
                font-size: 0.9rem;
                flex-shrink: 0;
            }

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

            .comments-section {
                padding: 20px;
            }

            .comment-form {
                padding: 20px;
            }

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

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.5rem;
            }

            .article-title {
                font-size: 1.5rem;
            }

            .post-title {
                font-size: 1.1rem;
            }

            .tab {
                padding: 10px 12px;
                font-size: 0.8rem;
            }

            .image-placement-row {
                margin: 20px 0;
            }

            .image-placeholder.wide2 {
                position: relative;
                width: 100%;
                height: 300px;
                margin: 0 auto;
                background-color: #f9f9f9;
                overflow: hidden;
                border-radius: 8px;
                display: flex;
                flex-direction: column;
            }  

            .image-placeholder.wide {
                height: 120px;
            }

            .placeholder-text {
                font-size: 11px;
                padding: 4px 8px;
            }

            .image-placeholder.wide small {
                font-size: 8px;
                padding: 2px 4px;
            }

            .main-content {
                padding: 20px 0;
            }

            .featured-article {
                margin-bottom: 30px;
            }

            .posts-grid {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 320px) {
            .container {
                padding: 0 10px;
            }

            .logo-text {
                font-size: 1.3rem;
                letter-spacing: 1px;
            }

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

            .comment-form {
                padding: 15px;
            }

            .comments-section {
                padding: 15px;
            }
            
        }
