/* Reset and General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9; /* Light Grey */
  color: #333;
}

h1, h2, h3, h4 {
  color: #1D3557; /* Classic Dark Blue */
  font-weight: 700;
}

main {
  padding: 40px;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Header Styling */
header {
  background-color: #2a2a2a; /* Classic Dark Grey */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px; /* Adjusted padding */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 70px; /* Slightly higher height for header */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .header-logo img {
  width: 100px;
  height: auto;
}

header nav {
  display: flex;
  align-items: center;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

header nav ul li {
  margin: 0;
}

header nav ul li a {
  text-decoration: none;
  color: #fff; /* White Links for Classic Look */
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #E63946; /* Red for hover effect */
}

/* Mobile Header Styling */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px 15px;
  }

  header .header-logo {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }

  header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  header nav ul li a {
    font-size: 16px;
    padding: 8px 0;
    width: 70%;
  }
}

/* Blocks */
.block {
  background-color: #f1f1f1; /* Light Grey for block background */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.block h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.block p {
  font-size: 1rem;
}

/* Payment Methods, Software Providers, and Bonuses Block Styles */
.payment-methods, .software-providers, .casino-bonuses {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.payment-methods .block, .software-providers .block, .casino-bonuses .block {
  flex: 1;
}

/* Footer Styles */
footer {
  background-color: #1D3557; /* Dark Blue */
  color: white;
  padding: 40px 20px;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

footer .about, footer .contact-form, footer .links, footer .responsible-gambling {
  flex: 1 1 22%;
  margin-bottom: 20px;
}

footer .about h4, footer .contact-form h4, footer .links h4, footer .responsible-gambling h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

footer .about p, footer .contact-form form, footer .links ul, footer .responsible-gambling a {
  font-size: 1rem;
}

footer .contact-form form input,
footer .contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

footer .contact-form button {
  background-color: #E63946; /* Red */
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

footer .contact-form button:hover {
  background-color: #F1FAEE;
}

footer .links ul {
  list-style: none;
  padding-left: 0;
}

footer .links ul li {
  margin-bottom: 15px;
}

footer .links ul li a {
  text-decoration: none;
  color: white;
}

footer .links ul li a:hover {
  color: #F1FAEE;
}

footer .responsible-gambling {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .responsible-gambling a {
  color: white;
  text-decoration: none;
}

footer .responsible-gambling a:hover {
  color: #F1FAEE;
}

@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    text-align: center;
  }

  footer .about, footer .contact-form, footer .links, footer .responsible-gambling {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  footer .contact-form button {
    width: auto;
  }
}

/* Pros and Cons Block */
.pros-cons-block {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.pros, .cons {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pros {
  background-color: #e0f7e9;
  border-left: 6px solid #28a745;
}

.cons {
  background-color: #ffe6e6;
  border-left: 6px solid #dc3545;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pros-cons-block {
    flex-direction: column;
  }

  .pros, .cons {
    margin-bottom: 20px;
  }
}
