
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: #334155;
            background-color: #f8fafc;
            font-size: 16px;
        }

        /* Container */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: #e2e8f0;
            padding: 15px 0;
            margin-bottom: 0;
        }

        .breadcrumb ol {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: #475569;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .breadcrumb a:hover {
            color: #1e40af;
        }

        .breadcrumb-item:not(:last-child)::after {
            content: '→';
            margin-left: 10px;
            color: #64748b;
        }

        .breadcrumb-item.active {
            color: #1e40af;
            font-weight: 600;
        }

        /* Main Content */
        .main-content-w3layouts-agileits {
            padding: 40px 0 60px;
            background: white;
        }

        /* Header Section */
        .page-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px 20px;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.1);
            z-index: 1;
        }

        .page-header .container {
            position: relative;
            z-index: 2;
        }

        .tit {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        /* Main Image */
        .main-image-cov {
            margin: 30px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            background: #f1f5f9; /* Prevent CLS */
            aspect-ratio: 16/9; /* Maintain aspect ratio */
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .main-image:hover {
            transform: scale(1.02);
        }

        /* Interview Section */
        .interview-section {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }

        /* Question and Answer Styles */
        .question {
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            padding: 20px 25px;
            margin: 25px 0 10px 0;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.05rem;
            color: #1e293b;
            border-left: 5px solid #3b82f6;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .question:hover {
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .question-number {
            display: inline-block;
            background: #3b82f6;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            font-weight: 700;
            margin-right: 15px;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .answer {
            background: #fefefe;
            padding: 20px 25px;
            margin-bottom: 25px;
            border-radius: 12px;
            line-height: 1.7;
            color: #475569;
            border: 1px solid #e2e8f0;
            position: relative;
            margin-left: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .answer::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 20px;
            width: 4px;
            height: calc(100% - 40px);
            background: #10b981;
            border-radius: 2px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .page-header {
                padding: 30px 15px;
                margin-bottom: 30px;
            }

            .interview-section {
                padding: 25px 20px;
            }

            .question {
                padding: 15px 20px;
                font-size: 1rem;
                margin: 20px 0 8px 0;
                display: flex;
                align-items: flex-start;
                gap: 10px;
            }

            .question-number {
                width: 30px;
                height: 30px;
                line-height: 30px;
                font-size: 0.8rem;
                margin-right: 0;
            }

            .answer {
                padding: 15px 20px;
                margin-bottom: 20px;
                margin-left: 5px;
                font-size: 0.95rem;
            }

            .main-content-w3layouts-agileits {
                padding: 20px 0 40px;
            }
        }

        @media (max-width: 480px) {
            .question {
                padding: 12px 15px;
                font-size: 0.95rem;
            }

            .answer {
                padding: 12px 15px;
                font-size: 0.9rem;
            }

            .question-number {
                width: 28px;
                height: 28px;
                line-height: 28px;
                font-size: 0.75rem;
            }
        }

        /* Footer Content */
        .conclusion-section {
            margin-top: 50px;
            padding: 30px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 12px;
            border-left: 5px solid #10b981;
        }

        .conclusion-section p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: #475569;
            font-size: 1.05rem;
        }

        .conclusion-section p:last-child {
            margin-bottom: 0;
        }

        /* Accessibility */
        .question:focus {
            outline: 2px solid #3b82f6;
            outline-offset: 2px;
        }

        /* Loading States for CLS Prevention */
        .main-image.loading {
            background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
            background-size: 200px 100%;
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            0% { background-position: -200px 0; }
            100% { background-position: calc(200px + 100%) 0; }
        }

        /* Print Styles */
        @media print {
            .breadcrumb, .page-header {
                background: none !important;
                box-shadow: none !important;
            }
            
            .question, .answer {
                break-inside: avoid;
                box-shadow: none !important;
                border: 1px solid #ccc !important;
            }
            
            .main-image-cov {
                box-shadow: none !important;
            }
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Focus states for better accessibility */
        a:focus, button:focus {
            outline: 2px solid #3b82f6;
            outline-offset: 2px;
        }

        /* Improved readability */
        .question, .answer {
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }



                     <header class="page-header">
                     <div class="container">
                            <h1 class="tit">Top 60 Structural Engineering Questions With Answers</h1>
                        </div>
                        </header>
                    
            

          




class="conclusion-section"