 .casino-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 0.9em;
            font-family: 'Roboto', sans-serif;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        }
        .casino-table thead tr {
            background-color: #009879;
            color: #ffffff;
            text-align: left;
        }
        .casino-table th, .casino-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #dddddd;
        }
        .casino-table tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }
        .casino-table tbody tr:last-of-type {
            border-bottom: 2px solid #009879;
        }
        .casino-table .casino-name {
            font-weight: bold;
            font-size: 1.1em;
        }
        .casino-table .cta-button {
            background-color: #f44336;
            color: white;
            padding: 10px 18px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            border-radius: 5px;
            font-weight: bold;
        }
        .casino-review {
            border: 1px solid #eee;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            background-color: #fafafa;
        }
        .article-content {
            line-height: 1.6;
        }
        .article-content h1, .article-content h2, .article-content h3 {
             font-family: 'Roboto', sans-serif;
        }
		
		
        .hero {
            background-color: #337ab7;
            color: white;
            padding: 40px 30px;
            margin-bottom: 40px;
            text-align: center;
        }

        .hero h1 {
            font-size: 2em;
            margin-bottom: 20px;
            font-weight: normal;
        }

        .hero p {
            font-size: 1.1em;
            line-height: 1.6;
            margin: 0 auto;
        }
		
        .section-header {
            background-color: #33b742;
            color: white;
            padding: 15px 20px;
            margin: 30px 0 20px 0;
            font-size: 1.3em;
            font-weight: bold;
        }

        .info-section {
            margin-bottom: 40px;
        }

        .info-box {
            background-color: white;
            border: 1px solid #ddd;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .info-box h2 {
            background-color: #337ab7;
            color: white;
            padding: 12px 20px;
            font-size: 1.1em;
            font-weight: bold;
            margin: 0;
        }

        .info-box p {
            padding: 20px;
            margin: 0;
            line-height: 1.7;
        }

        .intro-text {
            background-color: white;
            border: 1px solid #ddd;
            padding: 20px;
            margin-bottom: 25px;
            font-style: italic;
            text-align: center;
        }

        .criteria-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .criteria-item {
            background-color: white;
            border: 1px solid #ddd;
            overflow: hidden;
        }

        .criteria-item h3 {
            background-color: #33b742;
            color: white;
            padding: 12px 20px;
            margin: 0;
            font-size: 1em;
            font-weight: bold;
        }

        .criteria-item p {
            padding: 20px;
            margin: 0;
            line-height: 1.6;
        }

        .separator {
            height: 2px;
            background-color: #ddd;
            margin: 40px 0;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .hero {
                padding: 30px 20px;
            }
            
            .hero h1 {
                font-size: 1.6em;
            }
            
            .criteria-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header {
                padding: 12px 15px;
                font-size: 1.2em;
            }
            
            .info-box h2,
            .criteria-item h3 {
                padding: 10px 15px;
            }
            
            .info-box p,
            .criteria-item p,
            .intro-text {
                padding: 15px;
            }
        }
		
		h2{
		font-size: 36px !important;
		}
		
		img {
		  max-width: 100%;   
		  height: auto;      
		  display: block;    
		}
		
        .faq-container {
            background-color: white;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }

        .faq-item {
            border-bottom: 1px solid #ddd;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-item input[type="checkbox"] {
            display: none;
        }

        .faq-question {
            display: block;
            background-color: #337ab7;
            color: white;
            padding: 15px 20px;
            cursor: pointer;
            position: relative;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #2968a3;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2em;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: white;
        }

        .faq-answer p {
            padding: 20px;
            margin: 0;
            line-height: 1.7;
            color: #555;
        }

        .faq-item input[type="checkbox"]:checked ~ .faq-answer {
            max-height: 200px;
        }


        .faq-item input[type="checkbox"]:checked ~ .faq-question::after {
            content: '−';
        }

        .faq-item input[type="checkbox"]:checked ~ .faq-question {
            background-color: #33b742;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .section-header {
                padding: 12px 15px;
                font-size: 1.2em;
            }
            
            .faq-question {
                padding: 12px 15px;
                padding-right: 45px;
            }
            
            .faq-question::after {
                right: 15px;
            }
            
            .faq-answer p {
                padding: 15px;
            }
        }