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

        body {
            font-family: "Inter", sans-serif;
            background-color: #f1f2f6;
            color: #2c3e50;
            line-height: 1.6;
        }

        /* Header Styles */
        .header {
            font-family: "Quicksand";
            width: 100%;
            background-color: white;
            border-bottom: 1px solid #e0e6ed;
        }

        .header-container {
            max-width: 70%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px;
            margin-right: 10%;
        }

        .nav-button {
            font-family: "Quicksand";
            display: flex;
            align-items: center;
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            padding: 8px 16px;
            border-radius: 8px;
            transition: background-color 0.2s;
        }

        .nav-button:hover {
            background-color: #f8fafc;
        }

        .search-container {
            flex: 1;
            max-width: 400px;
            margin: 0 32px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 12px 16px 12px 40px;
            border: 1px solid #e0e6ed;
            border-radius: 8px;
            background-color: #f8fafc;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }

        .search-input:focus {
            border-color: #3b82f6;
            background-color: white;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            width: 16px;
            height: 16px;
        }

        .user-section {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .notification-btn {
            background: none;
            border: none;
            color: #64748b;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: background-color 0.2s;
        }

        .notification-btn:hover {
            background-color: #f8fafc;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .user-name {
            font-weight: 500;
            color: #1e293b;
        }

        .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #3b82f6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 14px;
        }

        /* Main Content */
        .main-content {
            max-width: 1400px;
            padding: 0px 0px;
        }

          .main-body {
            margin-left: 7%;
            padding: 0px 30px;
          }

        /* Welcome Section */
        .welcome-section {
          position: relative;
          width: 100%;
          color: white;
          padding: 32px 0;
          margin-bottom: 32px;
          background: #AB1C46;
          box-shadow: 0 0 0 100vmax #AB1C46;
          clip-path: inset(0 -100vmax);
        }

        .welcome-title {
            font-family: "Quicksand";
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            margin-left: 10%;
            color: white;
        }

        .welcome-name {
            color: #fbbf24;
        }

        .welcome-text {
            font-family: "Montserrat";
            font-size: 15px;
            line-height: 1.7;
            opacity: 0.95;
            margin-left: 10%;
            margin-right: 10%;
        }

        .welcome-text + .welcome-text {
            margin-top: 16px;
        }

        /* Section Titles */
        .section-title {
            font-family: "Quicksand";
            color: #134F97;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        section > a {
          text-decoration: none !important;
          color: inherit !important;
          display: block; 
        }

        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .news-card {
            position: relative;
            height: 200px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .news-card:hover {
            transform: translateY(-4px);
        }

        .news-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .news-card:hover img {
            transform: scale(1.05);
        }

        .news-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, #AB1C46 0%, rgba(171, 28, 70, 0.6) 30%, transparent 70%);
        }


        .news-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            color: white;
        }

        .news-title {
            font-family: "Quicksand";
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
        }

        .news-description {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.5;
            margin: 0;
            padding: 0;
        }

        /* Two Column Layout */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-bottom: 70px;
        }

        /* Training Cards */
        .training-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .training-card {
            position: relative;
            height: 180px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .training-card:hover {
            transform: translateY(-2px);
        }

        .training-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .training-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, #134F97 0%, rgba(19, 79, 151, 0.6) 30%, transparent 70%);
        }

        .training-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            color: white;
        }

        .training-title {
            font-family: "Quicksand";
            font-size: 18px;
            font-weight: 500;
            margin: 0;
            padding: 0;
            color: white;
        }

        .training-description {
            font-size: 13px;
            opacity: 0.95;
            line-height: 1.4;
            margin: 0;
            padding: 0;
        }

        /* Resource Cards */
        .resource-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .resource-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .resource-card:hover {
            transform: translateY(-2px);
        }

        .resource-card.large {
            height: 180px;
        }

        .resource-card.extra-large {
            height: 240px;
        }

        .resource-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .resource-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, #134F97 0%, rgba(19, 79, 151, 0.6) 30%, transparent 70%);
        }

        .resource-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            color: white;
        }

        .resource-title {
            font-family: "Quicksand";
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            padding: 0;
            color: white;
        }

        .resource-description {
            font-size: 13px;
            opacity: 0.95;
            line-height: 1.4;
            margin: 0;
            padding: 0;
        }

        /* Icons */
        .icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .icon-sm {
            width: 16px;
            height: 16px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
          .header {
                display: none;
            }
            .header-container {
                flex-direction: column;
                gap: 16px;
            }
          
            .main-content {
              margin-left: 0px;
              margin-top: 30%;

            }

            .search-container {
                margin: 0;
                max-width: none;
            }

            .two-column {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .news-grid {
                display: block;
                grid-template-columns: 1fr;
            }

            .main-content {
                padding: 16px;
            }

            .welcome-section {
                width: 100%;
            }
          
            .main-body {
                margin: 0px;
            }

            .welcome-title {
                font-size: 24px;
            }
          
            .news-card {
                margin-bottom: 20px;
            }

        @media (max-width: 480px) {
            .user-section {
                flex-direction: column;
                gap: 8px;
            }
        }
    </style>