  :root {
      --primary: #00d3e6;
      --primary-hover: #00d6ea;
      --secondary: #1a237e;
      --bg-dark: #0b132b;
      --bg-card: #1c2541;
      --text-light: #f8f9fa;
      --text-muted: #adb5bd;
      --border-color: rgba(255, 255, 255, 0.1);
      --border-radius: 12px;
      --transition: all 0.3s ease;
  }


  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
  }

  a {
      text-decoration: none;
      color: inherit;
  }

  ul {
      list-style: none;
  }

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


  h1,
  h2,
  h3,
  h4 {
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1rem;
  }

  h2 {
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 3rem;
  }

  .highlight {
      color: var(--primary);
  }


  .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 0;
  }

  .grid {
      display: grid;
      gap: 2rem;
  }


  .btn {
      display: inline-block;
      padding: 0.8rem 1.5rem;
      border-radius: var(--border-radius);
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      text-align: center;
  }

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

  .btn-primary:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
  }

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

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


  header {
      background-color: rgba(11, 19, 43, 0.95);
      backdrop-filter: blur(10px);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      border-bottom: 1px solid var(--border-color);
  }

  .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
  }

  .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: 1px;
  }

  .nav-links {
      display: flex;
      gap: 2rem;
  }

  .nav-links a {
      font-weight: 600;
      color: var(--text-muted);
      transition: var(--transition);
  }

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

  .nav-buttons {
      display: flex;
      gap: 1rem;
  }


  .hero {
      height: 100vh;
      min-height: 600px;
      background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
          url('../img/hero.jpeg') center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 80px;
  }

  .hero-content {
      max-width: 800px;
      padding: 2rem;
  }

  .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
  }

  .hero-content p {
      font-size: 1.2rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
  }

  .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
  }


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

  .service-card {
      background-color: var(--bg-card);
      padding: 2rem;
      border-radius: var(--border-radius);
      text-align: center;
      border: 1px solid var(--border-color);
      transition: var(--transition);
  }

  .service-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .service-card i {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
  }


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

  .about-card {
      background-color: var(--bg-card);
      border-radius: var(--border-radius);
      overflow: hidden;
      border: 1px solid var(--border-color);
  }

  .about-img {
      height: 300px;
      width: 100%;
      object-fit: cover;
  }

  .about-content {
      padding: 2rem;
  }


  .testimonials {
      background-color: #0f1836;
  }

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

  .test-card {
      background-color: var(--bg-dark);
      padding: 2rem;
      border-radius: var(--border-radius);
      border: 1px solid var(--border-color);
  }

  .test-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
  }

  .test-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
  }

  .stars {
      color: #ffd700;
      margin-bottom: 1rem;
  }


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

  .sport-card {
      position: relative;
      border-radius: var(--border-radius);
      overflow: hidden;
      height: 250px;
      cursor: pointer;
  }

  .sport-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
  }

  .sport-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
      padding: 2rem 1rem 1rem;
      transform: translateY(0);
  }

  .sport-card:hover img {
      transform: scale(1.1);
  }


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

  .faq-item {
      background-color: var(--bg-card);
      border-radius: var(--border-radius);
      margin-bottom: 1rem;
      border: 1px solid var(--border-color);
      overflow: hidden;
  }

  .faq-question {
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      transition: var(--transition);
  }

  .faq-question:hover {
      color: var(--primary);
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background-color: rgba(0, 0, 0, 0.2);
  }

  .faq-answer-inner {
      padding: 0 1.5rem 1.5rem;
      color: var(--text-muted);
  }

 

  .responsible-gambling {
      background-color: #2b0000;
      border: 1px solid #ff4d4d;
      padding: 1rem;
      border-radius: var(--border-radius);
      margin-bottom: 2rem;
      text-align: center;
      font-weight: 600;
  }


  .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .modal-overlay.active {
      display: flex;
      opacity: 1;
  }

  .modal-content {
      background-color: var(--bg-card);
      padding: 2.5rem;
      border-radius: var(--border-radius);
      width: 90%;
      max-width: 450px;
      position: relative;
      transform: translateY(-20px);
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
  }

  .modal-overlay.active .modal-content {
      transform: translateY(0);
  }

  .close-modal {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-muted);
  }

  .close-modal:hover {
      color: #fff;
  }


  .form-group {
      margin-bottom: 1.5rem;
  }

  .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      font-size: 0.9rem;
  }

  .form-control {
      width: 100%;
      padding: 0.8rem 1rem;
      background-color: rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      border-radius: var(--border-radius);
      color: #fff;
      font-family: inherit;
  }

  .form-control:focus {
      outline: none;
      border-color: var(--primary);
  }

  .form-submit {
      width: 100%;
      margin-top: 1rem;
  }


  #age-modal .modal-content {
      text-align: center;
      max-width: 500px;
  }

  #age-modal h2 {
      margin-bottom: 1rem;
  }

  .age-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
  }


  .cookie-banner {
      position: fixed;
      bottom: -100px;
      left: 0;
      width: 100%;
      background-color: var(--bg-card);
      border-top: 1px solid var(--border-color);
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 900;
      transition: bottom 0.5s ease;
  }

  .cookie-banner.show {
      bottom: 0;
  }

  .cookie-content {
      display: flex;
      align-items: center;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      width: 90%;
  }

  .cookie-buttons {
      display: flex;
      gap: 1rem;
      flex-shrink: 0;
  }


  @media (max-width: 768px) {
      .nav-links {
          display: none;
      }

      .hero-content h1 {
          font-size: 2.5rem;
      }

      .hero-buttons {
          flex-direction: column;
      }

      .cookie-content {
          flex-direction: column;
          text-align: center;
          gap: 1rem;
      }
  }
  .privacy-container {
            width: 90%;
            max-width: 900px;
            margin: 120px auto 4rem auto; 
            background-color: var(--bg-card);
            padding: 3rem 4rem;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .privacy-header {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 2rem;
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .privacy-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .privacy-date {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .policy-section {
            margin-bottom: 3rem;
        }

        .policy-section h2 {
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 1.2rem;
            font-weight: 800;
        }

        .policy-section h3 {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
        }

        
        .text-lead {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .text-body {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.2rem;
            opacity: 0.9;
        }

        .text-highlight {
            color: var(--primary);
            font-weight: 600;
        }

        .text-muted-sm {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-top: 2rem;
            border-top: 1px solid var(--border-color);
            padding-top: 1rem;
        }

        
        .policy-list {
            list-style-type: none;
            margin-bottom: 1.5rem;
            padding-left: 0;
        }

        .policy-list li {
            position: relative;
            padding-left: 1.8rem;
            margin-bottom: 0.8rem;
            color: var(--text-light);
            opacity: 0.9;
        }

        .policy-list li::before {
            content: "\f00c"; 
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary);
            font-size: 0.9rem;
        }

        
        .policy-alert-box {
            background-color: rgba(0, 230, 118, 0.05);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }

        .policy-alert-box p {
            margin: 0;
            color: var(--text-light);
            font-weight: 600;
        }

        
        footer {
            background-color: #050914;
            padding: 4rem 0 2rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }

        .footer-bottom {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        
        @media (max-width: 768px) {
            .privacy-container {
                width: 95%;
                padding: 2rem 1.5rem;
                margin-top: 100px;
            }
            .privacy-title {
                font-size: 2.2rem;
            }
        }.terms-container {
            width: 90%;
            max-width: 900px;
            margin: 120px auto 4rem auto;
            background-color: var(--bg-card);
            padding: 3rem 4rem;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .terms-header {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 2rem;
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .terms-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .terms-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-top: 1rem;
        }

        .terms-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .terms-section {
            margin-bottom: 3.5rem;
            counter-reset: subsection;
        }

        .terms-section h2 {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            font-weight: 800;
            border-bottom: 1px solid rgba(0, 230, 118, 0.2);
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        
        .text-lead {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 600;
            background: rgba(255,255,255,0.03);
            padding: 1.5rem;
            border-radius: var(--border-radius);
        }

        .text-body {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .text-bold {
            color: #fff;
            font-weight: 600;
        }

        .text-muted-sm {
            font-size: 0.85rem;
            color: rgba(173, 181, 189, 0.7);
            line-height: 1.5;
            margin-top: 3rem;
            border-top: 1px solid var(--border-color);
            padding-top: 1.5rem;
            text-align: center;
        }

        
        .terms-ol-list {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 1.5rem;
        }

        .terms-ol-list > li {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 1.2rem;
            color: var(--text-muted);
            counter-increment: subsection;
        }

        .terms-ol-list > li::before {
            content: counter(subsection) ".";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary);
            font-weight: 800;
            font-size: 1rem;
        }

        
        .terms-warning-box {
            background-color: rgba(255, 77, 77, 0.05);
            border-left: 4px solid var(--danger);
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 2rem 0;
        }

        .terms-warning-box h4 {
            color: var(--danger);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .terms-warning-box p {
            margin: 0;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .terms-container {
                width: 95%;
                padding: 2rem 1.5rem;
                margin-top: 100px;
            }
            .terms-title {
                font-size: 2.2rem;
            }
            .terms-meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
        }.cookie-container {
            width: 90%;
            max-width: 900px;
            margin: 120px auto 4rem auto;
            background-color: var(--bg-card);
            padding: 3rem 4rem;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .cookie-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .cookie-icon-top {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .cookie-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .cookie-section {
            margin-bottom: 3rem;
        }

        .cookie-section h2 {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        
        .text-lead {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .text-body {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .text-bold-highlight {
            color: #fff;
            font-weight: 600;
            border-bottom: 2px solid var(--primary);
        }

        
        .cookie-table-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .cookie-table th, 
        .cookie-table td {
            padding: 1.2rem;
            border-bottom: 1px solid var(--border-color);
        }

        .cookie-table th {
            background-color: var(--bg-lighter);
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .cookie-table tr:last-child td {
            border-bottom: none;
        }

        .cookie-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.02);
        }

        .badge-type {
            display: inline-block;
            padding: 0.3rem 0.6rem;
            background-color: rgba(0, 230, 118, 0.1);
            color: var(--primary);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
        }

        
        .cookie-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .cookie-card {
            background-color: rgba(0,0,0,0.2);
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .cookie-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .cookie-card i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .cookie-card h3 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .cookie-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }@media (max-width: 768px) {
            .cookie-container {
                width: 95%;
                padding: 2rem 1.5rem;
                margin-top: 100px;
            }
            .cookie-title {
                font-size: 2.2rem;
            }
            .cookie-table th, 
            .cookie-table td {
                padding: 0.8rem;
                font-size: 0.9rem;
            }
        }.rules-container {
            width: 90%;
            max-width: 1000px;
            margin: 120px auto 4rem auto;
            background-color: transparent; 
        }

        .rules-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem;
            background-color: var(--bg-card);
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .rules-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #fff;
            letter-spacing: -1px;
        }

        .rules-updated {
            display: inline-block;
            padding: 0.4rem 1rem;
            background-color: rgba(0, 230, 118, 0.1);
            color: var(--primary);
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        
        .text-rule-lead {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .text-rule-body {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .text-rule-muted {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
        }

        
        .rule-section {
            background-color: var(--bg-card);
            padding: 3rem;
            border-radius: var(--border-radius);
            border: 1px solid var(--border-color);
            margin-bottom: 2.5rem;
        }

        .rule-section-title {
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 2rem;
            font-weight: 800;
            position: relative;
            padding-left: 1.5rem;
        }

        .rule-section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            bottom: 5px;
            width: 5px;
            background-color: var(--primary);
            border-radius: 3px;
        }

        
        .rule-box {
            background-color: rgba(0,0,0,0.2);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 1.5rem;
        }

        .rule-box h4 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        
        .sport-rules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .sport-rule-card {
            background-color: var(--bg-lighter);
            padding: 2rem;
            border-radius: var(--border-radius);
            border: 1px solid transparent;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .sport-rule-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        }

        .sport-rule-icon {
            font-size: 2.5rem;
            color: rgba(0, 230, 118, 0.2);
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            transition: var(--transition);
        }

        .sport-rule-card:hover .sport-rule-icon {
            color: var(--primary);
            transform: scale(1.1);
        }

        .sport-rule-card h3 {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .sport-rule-card ul {
            list-style-type: disc;
            padding-left: 1.2rem;
            color: var(--text-muted);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        .sport-rule-card ul li {
            margin-bottom: 0.5rem;
        }

        
        .rule-definition-list {
            display: grid;
            gap: 1.5rem;
        }

        .rule-definition-item {
            display: flex;
            flex-direction: column;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1.5rem;
        }

        .rule-term {
            font-weight: 800;
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .rule-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }@media (max-width: 768px) {
            .rules-container {
                width: 95%;
                margin-top: 100px;
            }
            .rules-header {
                padding: 2rem 1.5rem;
            }
            .rules-title {
                font-size: 2.5rem;
            }
            .rule-section {
                padding: 2rem 1.5rem;
            }
            .rule-section-title {
                font-size: 1.5rem;
            }
        }



footer {
  width: 100%;
}

.bg-dark {
  background: #111827;
}

.text-white {
  color: #fff;
}

.text-muted {
  color: rgba(255, 255, 255, 0.65);
}

.text-center {
  text-align: center;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
 
h3, p, a, span, address {
  margin-top: 0;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.7;
}

.small {
  font-size: 0.875rem;
  line-height: 1.6;
}
 
.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.me-3 {
  margin-right: 1rem;
}

.m-1 {
  margin: 0.25rem;
}
 
.badge {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bg-secondary {
  background: #4b5563;
  color: #fff;
}
 
.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.gap-4 {
  gap: 1.5rem;
}
 
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

a:hover {
  opacity: 0.85;
}

.text-decoration-underline {
  text-decoration: underline;
}
 
.img-blog a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.img-blog img {
  display: block;
  max-height: 40px;
  width: auto;
  object-fit: contain;
}
 
nav a {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
 
address {
  font-style: normal;
  line-height: 1.7;
}

address a {
  text-decoration: underline;
}
 
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  h3 {
    font-size: 1.4rem;
  }

  p {
    font-size: 0.95rem;
  }

  .gap-4 {
    gap: 1rem;
  }

  nav a,
  .mb-3.small a {
    display: inline-block;
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
  }
}