        :root {
            --primary: #3498db;
            --secondary: #2c3e50;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --accent: #e74c3c;
            --text: #34495e;
            --border: #dfe6e9;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light);
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: stretch; /* Equal height */
        }

        h2 {
            color: var(--secondary);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
            text-align: center;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }

        .alumni-section, .facebook-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 25px;
            flex: 1 1 500px;
            max-width: 580px;
            display: flex;
            flex-direction: column;
        }

        .post {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            overflow: hidden;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .post:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .post img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 1px solid var(--border);
        }

        .details {
            padding: 20px;
        }

        .post h3 {
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .post small {
            color: #7f8c8d;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 10px;
        }

        .post p {
            color: var(--text);
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .read-mores {
            font-size: 0.8rem;
            padding: 6px 12px;
            background-color:  #4361ee;
            color: #ffffff;
            border-radius: 4px;
            text-decoration: none;
            align-self: flex-start;
            transition: all 0.2s ease;
        }

        .read-mores:hover {
            background-color: #3a0ca3;
        }

        .overflow-auto {
            max-height: 600px;
            overflow-y: auto;
            padding-right: 10px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) #f1f1f1;
        }

        .overflow-auto::-webkit-scrollbar {
            width: 6px;
        }

        .overflow-auto::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .overflow-auto::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .overflow-auto::-webkit-scrollbar-thumb:hover {
            background: #2980b9;
        }

        .fb-container {
            flex-grow: 1;
            height: 600px;
        }

        .fb-page {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        @media (max-width: 992px) {
            .container {
                flex-direction: column;
                align-items: center;
            }

            .facebook-section,
            .alumni-section {
                width: 90%;
                max-width: none;
            }
        }

        @media (max-width: 576px) {
            .post img {
                height: 140px;
            }

            .details {
                padding: 15px;
            }

            h2 {
                font-size: 1.5rem;
            }
        }
