
        .container {
            max-width: 900px;
            margin: 20px auto;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e0e0e0;
        }

        /* --- Header Section Styles --- */
        .header-section {
            text-align: center;
          /*  margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e0e0e0;
            */
        }

        .header-section h1 {
            font-size: 2em;
            margin-bottom: 5px;
            font-weight: 200;
        }

        .header-section p {
            margin: 0;
            color: #555;
            font-size: 0.95em;
        }

        .header-section a {
            color: #91a9c2;//#007bff;
            text-decoration: none;
        }

        .header-section a:hover {
            text-decoration: underline;
        }

        .header-bio-data {
            font-size: 1.8em;
            font-weight: bold;
            color: #333;
            margin-top: 15px;
            text-transform: uppercase;
        }

        .important-note {
            background-color: #fff3cd;
            color: #856404;
            border: 1px solid #ffeeba;
            border-radius: 5px;
            padding: 10px 15px;
            margin-top: 20px;
            font-size: 0.9em;
            text-align: center;
        }
        .important-note strong {
            font-weight: bold;
            text-transform: uppercase;
        }

        .advt-case-info {
            display: flex;
            justify-content: space-around;
            gap: 20px;
            margin-top: 25px;
            padding-top: 15px;
            border-top: 1px dashed #ddd;
        }

        .advt-case-info div {
            flex: 1;
            text-align: center;
            font-size: 1.1em;
            font-weight: 500;
            color: #0056b3;
        }
        .advt-case-info span {
            font-weight: normal;
            color: #333;
            display: block; /* Make the value appear on a new line */
            font-size: 0.9em;
            margin-top: 5px;
        }


        /* --- General Section Styles (from previous version) --- */
        h1.main-title { /* Renamed for clarity to avoid conflict with header-section h1 */
            text-align: center;
            color: #0056b3;
            margin-bottom: 30px;
            font-size: 2.2em;
            font-weight: 600;
        }

        .section {
            margin-bottom: 25px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            overflow: hidden;
            background-color: #fdfdfd;
        }

        .section-header {
            background-color: #91a9c2;//#007bff;
            color: white;
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2em;
            font-weight: 500;
            border-bottom: 1px solid #0069d9;
        }

        .section-header:hover {
            background-color: #0069d9;
        }

        .section-header::after {
            content: '+';
            font-size: 1.5em;
            transition: transform 0.3s ease;
        }

        .section-header.active::after {
            content: '-';
            transform: rotate(180deg);
        }

        .section-content {
            padding: 20px;
            display: none;
            border-top: 1px solid #e0e0e0;
            background-color: #ffffff;
        }

        .section-content.show {
            display: block;
        }

        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px 25px;
        }

        .data-item {
            display: flex;
            flex-direction: column;
            padding: 8px 0;
            border-bottom: 1px dashed #e9ecef;
        }

        .data-item:last-child {
            border-bottom: none;
        }

        .data-label {
            font-weight: 600;
            color: #555;
            font-size: 0.9em;
            margin-bottom: 3px;
            text-transform: capitalize;
        }

        .data-value {
            color: #333;
            font-size: 1em;
            word-wrap: break-word;
        }

        /* Specific styling for long text fields */
        .data-item.full-width {
            grid-column: 1 / -1; /* Spans across all columns */
            border-bottom: 1px dashed #e9ecef;
            padding-bottom: 15px;
        }
        .data-item.full-width .data-value {
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #dee2e6;
            white-space: pre-wrap; /* Preserves whitespace and wraps text */
        }

        /* Styles for tables (education/experience) */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .data-table th, .data-table td {
            border: 1px solid #dee2e6;
            padding: 10px;
            text-align: left;
            vertical-align: top;
        }

        .data-table th {
            background-color: #e9ecef;
            font-weight: 600;
            color: #495057;
            font-size: 0.95em;
        }

        .data-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .data-table td {
            font-size: 0.9em;
            color: #495057;
        }
        .multLine{
                display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
        }
        .data-item-35{
            width: 35%;
        }

     