.logo img {
    max-height: 63px;
}

/* Center tweets horizontally and display them side by side */
        .tweets-container {
            display: flex;
            flex-direction: row; /* Stack tweets horizontally */
            justify-content: center; /* Center tweets horizontally */
            gap: 20px; /* Add space between the tweets */
            padding: 20px;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
        }

        blockquote.twitter-tweet {
            width: 300px !important; /* Set a fixed width for each tweet */
            max-width: 100%; /* Ensure tweets don't exceed container */
        }

        /* Ensure responsive design on smaller screens */
        @media (max-width: 768px) {
            .tweets-container {
                flex-direction: column; /* Stack tweets vertically on smaller screens */
            }

            blockquote.twitter-tweet {
                width: 100% !important; /* Full width on smaller screens */
            }
        }

/* Fare Tables Section */
        .aqualine-service .main-content {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        .aqualine-service .dt-fare-table {
            margin: 20px 0;
            overflow-x: auto;
            display: flex;
            justify-content: center;
        }
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper {
            width: 100%;
            max-width: 800px;
        }
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper table,
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper thead,
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper tbody,
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper tr,
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper th,
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper td {
            /* Reset potentially conflicting styles */
            margin: 0;
            padding: 0;
            border: none;
            border-collapse: collapse;
            box-sizing: border-box;
        }
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper table {
            width: 100%;
            font-size: 16px;
        }
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper th,
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper td {
            padding: 12px 15px;
            text-align: center;
            border: 1px solid #d1d5db;
            min-width: 100px;
        }
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper th {
            background: #54595CFF;
            color: #fff;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper td {
            background: #fff;
            color: #333;
        }
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper tbody tr:nth-child(even) td {
            background: #f5f5f5;
        }
        .aqualine-service .dt-fare-table .dt-fare-table-wrapper tbody tr:hover td {
            background: #e9ecef;
        }
        @media (max-width: 767px) {
            .aqualine-service .dt-fare-table .dt-fare-table-wrapper table {
                font-size: 14px;
            }
            .aqualine-service .dt-fare-table .dt-fare-table-wrapper th,
            .aqualine-service .dt-fare-table .dt-fare-table-wrapper td {
                padding: 8px 10px;
                min-width: 80px;
            }
        }
/* Clickable Cards with Equal Sizing */
        .working-process-item {
            text-decoration: none !important;
            color: inherit !important;
            display: flex !important;
            flex-direction: column !important;
            min-height: 300px !important;
            justify-content: space-between !important;
            width: 100 !important;
            max-width: 350px !important;
            margin: 0 auto !important;
            box-sizing: border-box !important;
            border: 2px solid #e0e0e0 !important;
        }
        .working-process-item:hover {
            text-decoration: none !important;
            opacity: 0.9;
        }
        .working-process-item .content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            width: 100%;
            padding: 10px;
        }
        .working-process-item .content .title,
        .working-process-item .content p {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            overflow-wrap: break-word;
        }

.news-content .title {
                font-size: 24px;
                margin-bottom: 10px;
                line-height: 1.4;
                font-weight: bold;
            }
            .news-content .title a {
                color: #fff;
                text-decoration: none;
            }
            .news-content .title a:hover {
                color: #ddd;
            }