
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --windsor-navy: #1e3a5f;
            --windsor-blue: #6b9bd1;
            --windsor-beige: #f5f1e8;
            --windsor-light-blue: #cadcfc;
            --text-dark: #333;
            --text-light: #fff;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        /* Hero Section */
        .hero {
            background-color: #1e3a5f;
            background-image: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(45, 90, 123, 0.85) 100%), url(../windsor-assets/image-01.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: var(--text-light);
            padding: 80px 20px;
            text-align: center;
            min-height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 50px;
            opacity: 0.9;
        }
        
        /* Phase Cards (Hero) */
        .phase-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .phase-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: var(--text-light);
        }
        
        .phase-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .phase-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--windsor-light-blue);
            margin-bottom: 15px;
        }
        
        .phase-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .phase-subtitle {
            font-size: 1rem;
            opacity: 0.8;
        }
        
        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Section */
        section {
            padding: 80px 20px;
        }
        
        section:nth-child(odd) {
            background: var(--windsor-beige);
        }
        
        section:nth-child(even) {
            background: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-number {
            font-size: 5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--windsor-blue) 0%, var(--windsor-light-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--windsor-navy);
            margin-bottom: 15px;
        }
        
        .section-description {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        

        /* Subphase Cards - Horizontal 3-column layout */
        .subphase-section {
            margin-bottom: 60px;
        }
        
        .subphase-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        
        @media (max-width: 968px) {
            .subphase-cards {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            #weekly-reporting .subphase-cards {
                grid-template-columns: 1fr;
            }
        }
        
        .subphase-card {
            background: linear-gradient(135deg, #2d5a7b 0%, var(--windsor-navy) 100%);
            color: white;
            padding: 40px 30px;
            border-radius: 16px;
            border-left: 5px solid var(--windsor-blue);
            box-shadow: 0 8px 24px rgba(30, 58, 95, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 100%;
        }
        
        .subphase-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--windsor-blue), var(--windsor-light-blue));
        }
        
        .subphase-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(30, 58, 95, 0.4);
            border-left-color: var(--windsor-light-blue);
        }
        
        /* Different gradient for each card position */
        .subphase-card:nth-child(1) {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
        }
        
        .subphase-card:nth-child(2) {
            background: linear-gradient(135deg, #2d5a7b 0%, #3d6a8b 100%);
        }
        
        .subphase-card:nth-child(3) {
            background: linear-gradient(135deg, #3d6a8b 0%, #4d7a9b 100%);
        }
        
        section:nth-child(even) .subphase-card:nth-child(1) {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
        }
        
        section:nth-child(even) .subphase-card:nth-child(2) {
            background: linear-gradient(135deg, #2d5a7b 0%, #3d6a8b 100%);
        }
        
        section:nth-child(even) .subphase-card:nth-child(3) {
            background: linear-gradient(135deg, #3d6a8b 0%, #4d7a9b 100%);
        }
        
        .subphase-card h3 {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .subphase-card p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .subphase-card ul {
            list-style: none;
            padding: 0;
            margin: 15px 0 0 0;
        }
        
        .subphase-card li {
            color: rgba(255, 255, 255, 0.95);
            padding: 6px 0;
            padding-left: 30px;
            position: relative;
            font-size: 0.95rem;
        }
        
        /* Weekly Reporting Section - 2 column layout with wider cards */
        #weekly-reporting .subphase-cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }
        
        #weekly-reporting .subphase-card {
            padding: 50px 40px;
        }
        
        #weekly-reporting .subphase-card p {
            text-align: center;
        }
        
        #weekly-reporting .subphase-card ul {
            margin-top: 25px;
        }
        
        #weekly-reporting .subphase-card li {
            padding: 5px 0;
            padding-left: 35px;
        }
        
        .subphase-card li:before {
            content: "→";
            color: var(--windsor-light-blue);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.1rem;
        }
        
        /* Highlight taglines */
        .subphase-highlight {
            margin-top: auto;
            padding-top: 20px;
            margin-bottom: 0;
        }
        
        /* Two Column Layout */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        @media (max-width: 968px) {
            .two-column {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        .column-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--windsor-blue);
            position: relative;
        }
        
        .column-header::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--windsor-light-blue);
        }
        
        .column-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--windsor-navy);
            margin-bottom: 10px;
        }
        
        .column-subtitle {
            font-size: 1rem;
            color: #666;
            font-style: italic;
        }
        
        /* Report Cards */
        .report-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .report-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .report-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--windsor-blue);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        section:nth-child(even) .report-card {
            background: var(--windsor-beige);
        }
        
        .report-card:hover {
            border-color: var(--windsor-blue);
            box-shadow: 0 8px 24px rgba(107, 155, 209, 0.25);
            transform: translateY(-3px);
        }
        
        .report-card:hover::before {
            transform: scaleY(1);
        }
        
        .report-card h3 {
            color: var(--windsor-navy);
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .report-card p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .report-thumbnail {
            width: 100%;
            height: auto;
            border-radius: 4px;
            border: 1px solid #ddd;
        }
        

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            overflow: auto;
        }
        
        .modal-content {
            position: relative;
            margin: 40px auto;
            max-width: 90%;
            max-height: 90vh;
        }
        
        .modal-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .close {
            position: absolute;
            top: -40px;
            right: 0;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
        }
        
        .close:hover,
        .close:focus {
            color: #bbb;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-number {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            section {
                padding: 50px 20px;
            }
        }
        
        /* Placeholder Images */
        .placeholder-img {
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            aspect-ratio: 16/9;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.9rem;
            text-align: center;
            padding: 20px;
        }
        
        /* Special styling for single-column sections */
        .single-column {
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* Footer Hero Grid */
        .footer-hero-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        @media (max-width: 968px) {
            .footer-hero-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.7);
            animation: fadeIn 0.3s ease;
        }
        
        .modal.show {
            display: block;
        }
        
        .modal-content {
            background-color: #fefefe;
            margin: 3% auto;
            padding: 0;
            border-radius: 12px;
            width: 95%;
            max-width: 1400px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.3s ease;
        }
        
        .modal-header {
            padding: 24px 32px;
            background-color: #f8f9fa;
            border-bottom: 1px solid #e0e0e0;
            border-radius: 12px 12px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h2 {
            color: var(--windsor-navy);
            margin: 0;
        }
        
        .modal-body {
            padding: 32px;
            max-height: 75vh;
            overflow-y: auto;
        }
        
        .modal-body img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .close {
            color: #666;
            font-size: 32px;
            font-weight: 300;
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1;
            background: none;
            border: none;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close:hover,
        .close:focus {
            color: #000;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .view-report-btn {
            display: inline-block;
            background: var(--windsor-blue);
            color: white;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            margin-top: 20px;
        }
        
        .view-report-btn:hover {
            background: var(--windsor-navy);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
        }
    
        /* === MODAL POPUP STYLES === */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            overflow: auto;
        }
        
        .image-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-image-container {
            position: relative;
            width: 95vw;
            height: 95vh;
            background: white;
            border-radius: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-image-container img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 0;
        }
        
        .modal-close-btn {
            position: absolute;
            top: -40px;
            right: 0;
            background: white;
            border: none;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            color: #333;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-close-btn:hover {
            background: #f0f0f0;
        }
        
        img.clickable-image {
            cursor: pointer;
        }
        
        img.clickable-image:hover {
            opacity: 0.9;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        


            @media (max-width: 968px) {
                .strategic-questions {
                    grid-template-columns: 1fr !important;
                }
                .hero h1 {
                    font-size: 2rem !important;
                }
            }
        


            @media (max-width: 968px) {
                section[style*="grid-template-columns: 1fr 1fr"] {
                    grid-template-columns: 1fr !important;
                }
                section h1 {
                    font-size: 2rem !important;
                }
            }
        