
            .recommendations {
                background-color: #fff;
                padding: 30px;
                border-radius: 10px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                margin-bottom: 40px;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            
            .recommendations:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            }
            
            .recommendations h3 {
                color: #333;
                font-size: 24px;
                margin-bottom: 20px;
                font-weight: bold;
            }
            
            .recommendations ul {
                padding-left: 20px;
                list-style-type: none;
            }
            
            .recommendations ul li {
                margin-bottom: 15px;
                font-size: 18px;
                color: #555;
            }
            
            .recommendations ul li a {
                color: #0073e6;
                text-decoration: none;
                font-weight: 600;
                transition: color 0.3s ease;
            }
            
            .recommendations ul li a:hover {
                color: #005bb5;
                text-decoration: underline;
            }

            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 20px;
            }

            .directory {
                background-color: #fff;
                padding: 15px;
                border-radius: 8px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                margin-bottom: 20px;
            }

            .directory h3 {
                color: #333;
                font-size: 24px;
                margin-bottom: 20px;
                font-weight: bold;
            }

            .directory ul {
                padding-left: 20px;
                list-style-type: none;
            }

            .directory ul li {
                margin-bottom: 10px;
            }

            .directory ul li a {
                color: #0073e6;
                text-decoration: none;
            }

            .directory ul li a:hover {
                text-decoration: underline;
            }

            h1, h2, h3 {
                color: #333;
            }

            ul {
                list-style-type: none;
            }

            ul li {
                margin-bottom: 10px;
            }

            .content-section {
                margin-bottom: 40px;
            }

            .intro {
                background-color: #fff;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                margin-bottom: 20px;
            }

            table {
                width: 100%;
                border-collapse: collapse;
                margin-top: 20px;
            }

            th, td {
                padding: 12px;
                border: 1px solid #ddd;
                text-align: center;
            }

            th {
                background-color: #0073e6;
                color: white;
            }

            tr:nth-child(even) {
                background-color: #f4f4f4;
            }

            tr:hover {
                background-color: #f1f1f1;
            }
        