/* Base Styles and Variables */
:root {
  --primary-color: #e60023;
  --secondary-color: #222222;
  --accent-color: #ffc107;
  --light-color: #ffffff;
  --dark-color: #1a1a1a;
  --gray-color: #f4f4f4;
  --border-color: #dddddd;
  --text-color: #333333;
  --text-light: #666666;
  --casino-green: #1B5E20;
  --casino-red: #B71C1C;
  --casino-gold: #FFD700;
  --transition: all 0.3s ease;
  --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

.white-icon path {
  fill: white;
}


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 20px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--secondary-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active::after,
nav ul li a:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light-color);
  text-align: center;
  padding: 180px 0 100px;
  margin-top: 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--light-color);
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-primary:hover {
  background-color: #c50023;
  color: var(--light-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.btn-secondary:hover {
  background-color: #000000;
  color: var(--light-color);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-color);
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
  background-color: rgba(230, 0, 35, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.feature-card .icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  max-width: 500px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
}

.client {
  display: flex;
  align-items: center;
}

.client img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.client-info h4 {
  margin-bottom: 5px;
}

.client-info p {
  margin-bottom: 0;
  color: var(--text-light);
  font-style: normal;
}

/* Recent Posts Section */
.recent-posts {
  padding: 80px 0;
}

.recent-posts h2 {
  text-align: center;
  margin-bottom: 50px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.post-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.post-content p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.read-more {
  font-weight: 500;
  color: var(--primary-color);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: var(--gray-color);
  color: var(--text-light);
  font-size: 0.875rem;
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* CTA Section */
.cta {
  background-color: var(--secondary-color);
  color: var(--light-color);
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  color: var(--light-color);
  margin-bottom: 20px;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #ddd;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.footer-logo p {
  color: #bbb;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--light-color);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #bbb;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  margin-bottom: 10px;
  color: #bbb;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-color);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 0.875rem;
}

.legal-links {
  margin-bottom: 15px;
}

.legal-links a {
  color: #bbb;
  margin: 0 10px;
}

.legal-links a:hover {
  color: var(--primary-color);
}

.responsible-gaming {
  margin-bottom: 15px;
}

.responsible-gaming p {
  margin-bottom: 5px;
  font-weight: 500;
}

.responsible-links a {
  color: #bbb;
  margin: 0 10px;
  text-decoration: underline;
}

.responsible-links a:hover {
  color: var(--primary-color);
}

.copyright {
  margin-top: 15px;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--light-color);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cookie-content h3 {
  color: var(--light-color);
  margin-bottom: 10px;
}

.cookie-content p {
  margin-bottom: 15px;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-content a {
  color: #bbb;
  text-decoration: underline;
}

.cookie-content a:hover {
  color: var(--primary-color);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 100%;
  padding: 30px;
  position: relative;
  margin: 50px auto;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.thank-you-message i {
  font-size: 3rem;
  color: #28a745;
  margin-bottom: 20px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 3px;
}

/* Page Header */
.page-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/page-header.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light-color);
  text-align: center;
  padding: 150px 0 80px;
}

.page-header h1 {
  color: var(--light-color);
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Page */
.services-intro {
  padding: 80px 0;
}

.intro-content {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 40px;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 20px;
}

.intro-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.service-categories {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  margin-bottom: 10px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.package-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
  z-index: 2;
}

.package-header {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 20px;
  text-align: center;
}

.package-header h3 {
  color: var(--light-color);
  margin-bottom: 5px;
}

.price {
  font-size: 1.25rem;
  font-weight: 500;
}

.package-content {
  padding: 20px;
}

.package-content ul {
  margin-bottom: 20px;
}

.package-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.package-content ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.custom-package {
  margin-top: 50px;
  text-align: center;
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.custom-package h3 {
  margin-bottom: 15px;
}

.custom-package p {
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.additional-services {
  padding: 80px 0;
}

.services-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-item {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  max-width: 250px;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-item .icon {
  background-color: rgba(230, 0, 35, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.service-item .icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.service-item h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.event-types {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.event-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.event-type {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.event-type img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event-type h3 {
  margin: 15px 0 10px;
  padding: 0 15px;
}

.event-type p {
  padding: 0 15px 20px;
  color: var(--text-light);
}

.faq {
  padding: 80px 0;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--light-color);
  cursor: pointer;
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.toggle-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--gray-color);
}

.accordion-content p {
  padding: 20px 0;
}

/* Blog Page */
.blog-content {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 40px;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 30px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 15px;
}

.blog-post h2 {
  margin-bottom: 15px;
}

.blog-post h2 a {
  color: var(--secondary-color);
}

.blog-post h2 a:hover {
  color: var(--primary-color);
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 10px;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.category-list li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.category-list a {
  color: var(--text-color);
}

.category-list a:hover {
  color: var(--primary-color);
}

.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-post a {
  display: flex;
  gap: 15px;
  color: var(--text-color);
}

.popular-post a:hover {
  color: var(--primary-color);
}

.popular-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.popular-post-content h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

/* Blog Post Page */
.blog-post-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/blog-header.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light-color);
  padding: 150px 0 60px;
}

.blog-post-header .post-meta {
  justify-content: center;
  margin-bottom: 20px;
  color: #ddd;
}

.blog-post-header h1 {
  color: var(--light-color);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content {
  padding: 60px 0;
}

.blog-post-content .container {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 40px;
}

.post-main-content {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.featured-image img {
  width: 100%;
  height: auto;
}

.post-content {
  padding: 30px;
}

.post-content h2 {
  margin-top: 40px;
}

.post-content h3 {
  margin-top: 30px;
}

.post-content ul,
.post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-content ul li,
.post-content ol li {
  margin-bottom: 10px;
}

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.post-image {
  margin: 30px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: auto;
}

.caption {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-top: 10px;
  font-size: 0.9rem;
}

.author-box {
  display: flex;
  align-items: center;
  background-color: var(--gray-color);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-top: 40px;
}

.author-image {
  flex-shrink: 0;
  margin-right: 20px;
}

.author-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  margin-bottom: 5px;
}

.author-info p {
  margin-bottom: 0;
  color: var(--text-light);
}

.post-share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.post-share span {
  margin-right: 15px;
  color: var(--text-light);
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 30px;
  background-color: var(--gray-color);
  border-top: 1px solid var(--border-color);
}

.prev-post,
.next-post {
  position: relative;
}

.next-post {
  text-align: right;
}

.post-navigation a {
  display: block;
  color: var(--text-color);
}

.post-navigation a:hover {
  color: var(--primary-color);
}

.post-navigation span {
  display: block;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 5px;
}

.post-navigation h4 {
  font-size: 1rem;
  margin-bottom: 0;
}

.related-posts {
  padding: 30px;
  border-top: 1px solid var(--border-color);
}

.related-posts h3 {
  margin-bottom: 20px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-post {
  background-color: var(--gray-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h4 {
  padding: 15px;
  font-size: 1rem;
  margin-bottom: 0;
}

.related-post a {
  color: var(--text-color);
}

.related-post a:hover {
  color: var(--primary-color);
}

/* About Page */
.about-intro {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 40px;
  align-items: center;
}

.mission-values {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.mission {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.value-card .icon {
  background-color: rgba(230, 0, 35, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.value-card .icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.our-team {
  padding: 80px 0;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-member h3 {
  margin: 20px 0 5px;
}

.team-member p {
  padding: 0 15px;
  margin-bottom: 15px;
}

.team-member p:nth-child(3) {
  color: var(--primary-color);
  font-weight: 500;
}

.team-member .social-icons {
  justify-content: center;
  margin: 15px 0 20px;
}

.why-choose-us {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.benefit .icon {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.benefit h3 {
  margin-bottom: 10px;
}

.benefit p {
  margin-bottom: 0;
}

/* Contact Page */
.contact-info {
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.info-card .icon {
  background-color: rgba(230, 0, 35, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.info-card .icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.info-card h3 {
  margin-bottom: 15px;
}

.info-card p {
  margin-bottom: 5px;
}

.info-card a {
  color: var(--text-color);
}

.info-card a:hover {
  color: var(--primary-color);
}

.contact-form-section {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 40px;
  align-items: start;
}

.form-info h2 {
  margin-bottom: 20px;
}

.form-info p {
  margin-bottom: 30px;
}

.social-contact h3 {
  margin-bottom: 15px;
}

.contact-form {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.map-section {
  padding: 80px 0;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-top: 30px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsible Entertainment Page */
.responsible-intro {
  padding: 80px 0;
}

.key-principles {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.principle-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.principle-card .icon {
  background-color: rgba(230, 0, 35, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.principle-card .icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.entertainment-focus {
  padding: 80px 0;
}

.focus-content {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 40px;
  align-items: center;
}

.focus-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.focus-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.focus-text ul li {
  margin-bottom: 10px;
}

.staff-training {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.training-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 30px auto 0;
}

.training-point {
  display: flex;
  gap: 20px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.training-point .icon {
  background-color: rgba(230, 0, 35, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.training-point .icon i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.point-content h3 {
  margin-bottom: 10px;
}

.point-content p {
  margin-bottom: 0;
}

.support-resources {
  padding: 80px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.resource-card {
  display: flex;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  gap: 20px;
}

.resource-logo {
  flex-shrink: 0;
}

.resource-logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.resource-content h3 {
  margin-bottom: 10px;
}

.resource-content p {
  margin-bottom: 15px;
}

.resource-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.resource-content ul li {
  margin-bottom: 5px;
}

.commitment {
  padding: 80px 0;
  background-color: var(--gray-color);
}

.commitment-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.commitment-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.commitment-badge i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.commitment-badge p {
  font-weight: 500;
  margin-bottom: 0;
}

/* Comparison Table */
.comparison-table {
  margin: 30px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-row.header {
  background-color: var(--secondary-color);
  color: var(--light-color);
  font-weight: 600;
}

.comparison-row:nth-child(even) {
  background-color: var(--gray-color);
}

.comparison-row:nth-child(odd):not(.header) {
  background-color: var(--light-color);
}

.comparison-cell {
  padding: 15px 20px;
  border: 1px solid var(--border-color);
}

/* View Counter */
.views {
  display: flex;
  align-items: center;
  gap: 5px;
}

.views i {
  color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .intro-content,
  .about-content,
  .focus-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .intro-image,
  .about-image,
  .focus-image {
    order: -1;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .blog-content,
  .blog-post-content .container,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    margin-top: 40px;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .related-posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .resource-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  header .container {
    padding: 15px;
  }
  
  .hamburger {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--light-color);
    transition: var(--transition);
    z-index: 1000;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 15px;
  }
  
  .footer-contact p i {
    width: 20px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .contact-form form {
    grid-template-columns: 1fr;
  }
  
  .blog-post-header h1 {
    font-size: 2rem;
  }
  
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .next-post {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .feature-grid,
  .service-grid,
  .package-grid,
  .event-type-grid,
  .values-grid,
  .benefits-grid,
  .info-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slider {
    flex-direction: column;
  }
  
  .modal-content {
    padding: 20px;
  }
  
  .blog-post-header {
    padding: 120px 0 40px;
  }
  
  .post-content {
    padding: 20px;
  }
  
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image {
    margin: 0 0 15px;
  }
  
  .training-point {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
