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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3 0%, #2196f3 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 103, 202, 0.3);
}

.btn-outline {
  background: transparent;
  color: #0167ca;
  border: 2px solid #0167ca;
}

.btn-outline:hover {
  background: #0167ca;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  width: auto;
}

.flag {
  height: 24px;
  width: 24px;
  border-radius: 50%;
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #e3f2fd;
}

.header-actions {
  display: flex;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: #0167ca;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
  padding: 4rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0167ca;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature i {
  color: #0167ca;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

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

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  color: #0167ca;
  margin-bottom: 1rem;
}

.section-description {
  text-align: center;
  color: #666;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* What is 1win Section */
.what-is-1win {
  background: #f8fbff;
}

.info-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}

.table-row {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.table-row:last-child {
  border-bottom: none;
}

.table-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.table-cell strong {
  color: #0167ca;
  font-weight: 600;
}

.advantages {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.advantages h3 {
  color: #0167ca;
  margin-bottom: 1rem;
}

.advantages ul {
  list-style: none;
  padding: 0;
}

.advantages li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.advantages li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

/* Casino Games Section */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.game-category {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.category-header i {
  color: #0167ca;
  font-size: 1.5rem;
}

.category-header h3 {
  color: #0167ca;
  margin: 0;
}

.game-category ul {
  list-style: none;
  padding: 0;
}

.game-category li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.game-category li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0167ca;
  font-weight: bold;
}

.featured-game {
  grid-column: 1 / -1;
}

.game-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}

.game-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.popular-games {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.popular-games h3 {
  color: #0167ca;
  margin-bottom: 1.5rem;
}

.games-list {
  display: grid;
  gap: 1rem;
}

.game-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fbff;
  border-radius: 8px;
}

.game-number {
  background: #0167ca;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* Sports Betting Section */
.sports-betting {
  background: #f8fbff;
}

.sports-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.sport-highlight,
.more-sports,
.live-betting {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.sport-highlight h3,
.more-sports h3,
.live-betting h3 {
  color: #0167ca;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sport-highlight ul,
.more-sports ul,
.live-betting ul {
  list-style: none;
  padding: 0;
}

.sport-highlight li,
.more-sports li,
.live-betting li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.sport-highlight li::before,
.more-sports li::before,
.live-betting li::before {
  content: "⚽";
  position: absolute;
  left: 0;
}

.betting-types-table {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.betting-types-table h3 {
  color: #0167ca;
  margin-bottom: 1.5rem;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

th {
  background: #f8fbff;
  color: #0167ca;
  font-weight: 600;
}

tr:hover {
  background: #f8fbff;
}

/* Bonuses Section */
.bonus-types {
  margin-bottom: 3rem;
}

.bonus-types h3 {
  color: #0167ca;
  margin-bottom: 2rem;
  text-align: center;
}

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

.bonus-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

.bonus-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bonus-card h4 {
  color: #0167ca;
  margin-bottom: 1rem;
}

.bonus-example,
.other-promos {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.bonus-example h3,
.other-promos h3 {
  color: #0167ca;
  margin-bottom: 1.5rem;
}

.other-promos ul {
  list-style: none;
  padding: 0;
}

.other-promos li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.other-promos li::before {
  content: "🎁";
  position: absolute;
  left: 0;
}

/* Payment Methods Section */
.payment-methods {
  background: #f8fbff;
}

.payment-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.payment-tables {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.deposit-section,
.withdrawal-section {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.deposit-section h3,
.withdrawal-section h3 {
  color: #0167ca;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-summary {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.summary-table {
  display: grid;
  gap: 1rem;
}

.summary-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: #f8fbff;
  border-radius: 8px;
}

.summary-row:first-child {
  background: #0167ca;
  color: white;
  font-weight: 600;
}

.summary-label {
  font-weight: 600;
}

/* Mobile App Section */
.mobile-app {
  background: #f8fbff;
}

.app-installation {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.installation-method {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.installation-method h3 {
  color: #0167ca;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.installation-method ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.installation-method li {
  margin-bottom: 0.5rem;
}

.app-features,
.registration-methods {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.app-features h3,
.registration-methods h3 {
  color: #0167ca;
  margin-bottom: 1.5rem;
}

.app-features ul {
  list-style: none;
  padding: 0;
}

.app-features li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.app-features li::before {
  content: "📱";
  position: absolute;
  left: 0;
}

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

.registration-option {
  background: #f8fbff;
  padding: 1.5rem;
  border-radius: 12px;
}

.registration-option h4 {
  color: #0167ca;
  margin-bottom: 0.5rem;
}

/* Legal Section */
.legal-section {
  background: #f8fbff;
}

.legal-content {
  display: grid;
  gap: 2rem;
}

.legal-guarantees,
.legal-summary,
.verification-docs {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.legal-guarantees h3,
.verification-docs h3 {
  color: #0167ca;
  margin-bottom: 1.5rem;
}

.legal-guarantees ul,
.verification-docs ol {
  padding-left: 1.5rem;
}

.legal-guarantees li,
.verification-docs li {
  margin-bottom: 0.5rem;
}

.legal-box {
  background: #f8fbff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #0167ca;
}

.legal-box h4 {
  color: #0167ca;
  margin-bottom: 1rem;
}

.legal-box ul {
  list-style: none;
  padding: 0;
}

.legal-box li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.legal-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.login-showcase {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.login-showcase h3 {
  color: #0167ca;
  margin-bottom: 1rem;
}

.login-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.login-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.login-features ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.login-features li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.login-features li::before {
  content: "🔐";
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .login-demo {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Comparison Section */
.comparison-section {
  background: #f8fbff;
}

.comparison-table {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Pros and Cons Section */
.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pros,
.cons {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pros h3 {
  color: #4caf50;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cons h3 {
  color: #f44336;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
}

.pros li,
.cons li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f44336;
  font-weight: bold;
}

/* Strategies Section */
.strategies {
  background: #f8fbff;
}

.strategies-list {
  display: grid;
  gap: 2rem;
}

.strategy-item {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  align-items: flex-start;
}

.strategy-number {
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.strategy-content h4 {
  color: #0167ca;
  margin-bottom: 0.5rem;
}

/* Conclusion Section */
.conclusion {
  background: linear-gradient(135deg, #0167ca 0%, #38a8fa 100%);
  color: white;
  text-align: center;
}

.conclusion .section-title {
  color: white;
}

.conclusion-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}

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

.conclusion .btn-primary {
  background: white;
  color: #0167ca;
}

.conclusion .btn-primary:hover {
  background: #f0f0f0;
}

.conclusion .btn-outline {
  border-color: white;
  color: white;
}

.conclusion .btn-outline:hover {
  background: white;
  color: #0167ca;
}

/* FAQ Section */
.faq {
  background: #f8fbff;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8fbff;
}

.faq-question h4 {
  color: #0167ca;
  margin: 0;
}

.faq-question i {
  color: #0167ca;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem 2rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  color: #38a8fa;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-flag {
  height: 24px;
  width: 24px;
  border-radius: 50%;
}

.footer-description {
  color: #ccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #38a8fa;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.footer-info p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #38a8fa;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Header Mobile */
  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-actions {
    flex-direction: column;
  }

  /* Hero Mobile */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Typography Mobile */
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }

  /* Sections Mobile */
  section {
    padding: 2rem 0;
  }

  /* Tables Mobile */
  .table-responsive {
    font-size: 0.9rem;
  }

  th,
  td {
    padding: 0.5rem;
  }

  /* Games Mobile */
  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Bonus Mobile */
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  /* Payment Mobile */
  .summary-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .summary-row span {
    padding: 0.5rem;
    background: white;
    border-radius: 4px;
    text-align: center;
  }

  /* App Mobile */
  .app-installation {
    grid-template-columns: 1fr;
  }

  .registration-options {
    grid-template-columns: 1fr;
  }

  /* Strategies Mobile */
  .strategy-item {
    flex-direction: column;
    text-align: center;
  }

  /* Conclusion Mobile */
  .conclusion-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 15px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .feature {
    padding: 0.75rem;
  }

  .game-category,
  .bonus-card,
  .strategy-item {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.game-category,
.bonus-card,
.strategy-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
  outline: 2px solid #38a8fa;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .mobile-menu-toggle,
  .btn {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}
