/* ==========================================================================
   Asoc, Inc. - Main Stylesheet
   Financial Services Website
   ========================================================================== */

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a2b3c;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #0a1628;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: #4b5563;
}

/* ==========================================================================
   LAYOUT & CONTAINERS
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a1628;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

@media (min-width: 1024px) {
  .header-container {
    height: 80px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
}

.logo span {
  color: #10b981;
}

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

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #1a365d;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #1a365d;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu Styles */
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  padding: 2rem;
  gap: 0.5rem;
  z-index: 999;
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .header-container {
    height: 80px;
  }
  
  .nav-menu.active {
    position: static;
    flex-direction: row;
    padding: 0;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background-color: transparent;
    overflow-y: visible;
  }
}

.nav-menu.active .nav-link {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
}

.nav-menu.active .nav-link:hover {
  background-color: #eff6ff;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: #0a1628;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .hero {
    min-height: 600px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 54, 93, 0.85) 50%, rgba(5, 150, 105, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 3rem 0;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3.25rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.btn-primary:hover:not(:disabled) {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn--primary {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.btn--primary:hover:not(:disabled) {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: transparent;
}

.btn--ghost:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.service-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #4b5563;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.9375rem;
  color: #6b7280;
}

/* Business Content */
.business-content {
  max-width: 800px;
  margin: 0 auto;
}

.business-content p {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.business-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.business-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
  line-height: 1.5;
}

.business-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
}

/* About Content */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.7;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #2563eb;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: #2563eb;
  text-decoration: underline;
}

.form-checkbox label a:hover {
  color: #1d4ed8;
}

/* Form Check */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-check__input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #2563eb;
  cursor: pointer;
}

.form-check__label {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.5;
}

.form-check__label a {
  color: #2563eb;
  text-decoration: underline;
}

.form-check__label a:hover {
  color: #1d4ed8;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background-color: #0a1628;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 3rem;
  }
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-section address {
  font-style: normal;
  margin-top: 1rem;
}

.footer-section address p {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

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

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

.footer-section ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-section ul a:hover {
  color: #10b981;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom .disclaimer {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.footer-bottom .copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #0a1628;
  color: #ffffff;
  padding: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: #10b981;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-backdrop.visible {
  display: flex;
}

.modal {
  background-color: #ffffff;
  border-radius: 1rem;
  max-width: 500px;
  width: calc(100% - 2rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a1628;
}

.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  color: #6b7280;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}

.modal__close:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.modal__body {
  padding: 1.5rem;
}

.modal__body p {
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
}

/* Cookie Setting */
.cookie-setting {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-setting:last-child {
  border-bottom: none;
}

.cookie-setting small {
  color: #6b7280;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

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

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 0.5rem;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: #6b7280;
  margin-bottom: 2rem;
}

.legal-content {
  line-height: 1.7;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 1rem;
}

.legal-section p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-section ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #6b7280;
}

/* ==========================================================================
   SERVICE PAGE
   ========================================================================== */

.page-header {
  background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
  color: #ffffff;
  text-align: center;
  padding: 4rem 1rem;
}

.page-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.service-card-full {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .service-image {
    height: 300px;
  }
}

.service-content {
  padding: 2rem;
}

.service-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 1rem;
}

.service-content p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-examples {
  margin-top: 1.5rem;
}

.service-examples h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 0.75rem;
}

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

.service-examples ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.service-examples ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-intro {
  padding: 3rem 0;
}

.about-text {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.about-text p {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.8;
}

.about-image {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
}

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

.values {
  background-color: #f9fafb;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: #6b7280;
}

.mission {
  background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
  color: #ffffff;
  text-align: center;
}

.mission h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.mission p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.25s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.35s ease-out;
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 640px) and (max-width: 767px) {
  .hide-tablet-sm { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet { display: none !important; }
}

@media (min-width: 1024px) {
  .hide-desktop { display: none !important; }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  img {
    page-break-inside: avoid;
  }

  .header,
  .footer,
  .cookie-banner,
  .modal-backdrop {
    display: none !important;
  }
}
