/* ===========================
   POPPINS FONT IMPORT
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* ===========================
   CSS VARIABLES & FOUNDATION
   =========================== */

:root {
  /* Brand Colors */
  --brand-orange: #ff6a00;
  --brand-orange-strong: #ff7700;
  --brand-black: #000000;
  --text: #1d1d1f;
  --text-light: #cccccc;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --surface: #f6f6f7;
  
  /* Typography */
  --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  /* Spacing */
  --container-padding: 1rem;
  --header-height: 80px;
  
  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-medium: 300ms ease;
  
  /* Z-index */
  --z-header: 1000;
  --z-mobile-menu: 1100;
}

/* ===========================
   MODERN CSS RESET
   =========================== */

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a
{
  text-decoration: none;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
}

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

/* ===========================
   UTILITY CLASSES
   =========================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================
   BUTTON COMPONENTS
   =========================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  white-space: nowrap;
}

.button:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 2px;
}

.button--primary {
  background-color: var(--brand-orange);
  color: #ffffff;
  border-color: var(--brand-orange);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.25);
  transition: all var(--transition-fast);
}

.button--primary:hover {
  background-color: #ffffff;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.35);
  transform: translateY(-1px);
}

.button--ghost {
  background-color: transparent;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}

.button--ghost:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--brand-orange-strong);
  border-color: var(--brand-orange-strong);
}

.button--large {
  padding: 16px 32px;
  font-size: 16px;
  min-height: 56px;
}

.button span {
  position: relative;
  z-index: 1;
}

/* ===========================
   HEADER COMPONENT
   =========================== */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background-color: #ffffff;
  color: #1d1d1f;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-fast);
}

.header__wrapper {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  gap: 2rem;
}

.header__brand {
  flex-shrink: 0;
}

.header__logo {
  display: block;
  transition: opacity var(--transition-fast);
}

.header__logo:hover {
  opacity: 0.8;
}

.header__logo:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 4px;
}

.header__logo img {
  width: auto;
  height: 48px;
}

/* Desktop Navigation */
.header__nav {
  flex: 1;
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 8px 0;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-orange);
  transition: width var(--transition-fast);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--brand-orange);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  width: 100%;
}

.nav__link:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 4px;
}

/* Header CTA */
.header__cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle Button */
.header__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.header__mobile-toggle:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 2px;
}

/* Hamburger Animation */
.hamburger {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background-color: #1d1d1f;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.hamburger__line--top {
  position: absolute;
  top: 0;
}

.hamburger__line--middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger__line--bottom {
  position: absolute;
  bottom: 0;
}

/* Active hamburger state */
.header__mobile-toggle[aria-expanded="true"] .hamburger__line--top {
  transform: translateY(8px) rotate(45deg);
}

.header__mobile-toggle[aria-expanded="true"] .hamburger__line--middle {
  opacity: 0;
}

.header__mobile-toggle[aria-expanded="true"] .hamburger__line--bottom {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===========================
   MOBILE MENU COMPONENT
   =========================== */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-mobile-menu);
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-medium);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: var(--bg);
  transform: translateX(100%);
  transition: transform var(--transition-medium);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open .mobile-menu__content {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--surface);
}

.mobile-menu__logo img {
  height: 40px;
  width: auto;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1d1d1f;
  padding: 0;
}

.mobile-menu__close:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 2px;
}

.mobile-menu__nav {
  flex: 1;
  padding: 2rem 1.5rem;
}

.mobile-nav__list {
  list-style: none;
  margin: 0 0 3rem 0;
  padding: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--surface);
}

.mobile-nav__link {
  display: block;
  padding: 1.25rem 0;
  color: #1d1d1f;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--brand-orange);
}

.mobile-nav__link:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 4px;
}

.mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* 360px - Small mobile */
@media (min-width: 360px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* 768px - Tablet */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
    --header-height: 90px;
  }
  
  .header__wrapper {
    gap: 3rem;
  }
  
  .header__nav {
    display: block;
  }
  
  .header__cta {
    display: flex;
  }
  
  .header__mobile-toggle {
    display: none;
  }
  
  .header__logo img {
    height: 56px;
  }
  
  .nav__list {
    gap: 2.5rem;
  }
  
  .nav__link {
  font-size: 16px;
    font-weight: 500;
  }
  
  .mobile-menu__content {
    max-width: 450px;
  }
}

/* 1024px - Desktop */
@media (min-width: 1024px) {
  .header__wrapper {
    gap: 4rem;
  }
  
  .nav__list {
    gap: 2rem;
  }
  
  .header__cta {
    gap: 1.5rem;
  }
}

/* 1280px - Large desktop */
@media (min-width: 1280px) {
  :root {
    --container-padding: 2.5rem;
  }
  
  .header__logo img {
              height: 76px;
  }
}

/* ===========================
   ACCESSIBILITY & INTERACTIONS
   =========================== */

/* Focus trap for mobile menu */
.mobile-menu.is-open {
  position: fixed;
}

/* Prevent scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .nav__link::after {
    height: 3px;
  }
  
  .button {
    border-width: 3px;
  }
}

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

.footer {
  background-color: var(--brand-black);
  color: var(--text-light);
  font-family: var(--font-family);
}

.footer-top {
  padding: 3rem 0 2rem 0;
}

.footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
}

.footer .col-lg-3,
.footer .col-6,
.footer .col-12 {
  flex: 1;
  min-width: 250px;
  margin-bottom: 1.5rem;
}

.footer .col-6 {
  flex: 0 1 calc(50% - 1rem);
  min-width: 200px;
}

.footer .col-12 {
  flex: 1 1 100%;
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
      max-height: 110px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Social Media */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--transition-fast);
  font-size: 18px;
}

.social-link:hover {
  background-color: var(--brand-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-link:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

/* Footer Titles */
.footer-title {
  font-family: var(--font-family);
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1.25rem 0;
  line-height: 1.3;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--brand-orange);
  border-radius: 1px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  display: flex;
  align-items: center;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
  border-radius: 3px;
}

.footer-links a i {
  margin-right: 0.5rem;
  font-size: 0.75rem;
  color: var(--brand-orange);
  transition: transform var(--transition-fast);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Contact Items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 0.75rem;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--brand-orange);
  color: #ffffff;
  border-radius: 8px;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-info {
  flex: 1;
}

.footer-contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-contact-info a:hover {
  color: var(--brand-orange);
}

.footer-contact-info a:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
  border-radius: 3px;
}

.footer-contact-info p {
  color: var(--text-light);
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  text-align: center;
}

.footer-copyright {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 400;
}

.footer-copyright a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-copyright a:hover {
  color: var(--brand-orange-strong);
}

.footer-copyright a:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
  border-radius: 3px;
}

.description-content img
{
  display: inline-block;
}

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

@media (max-width: 992px) {
  .footer .col-lg-3 {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer .col-6 {
    flex: 1 1 calc(50% - 1rem);
  }
  
  .footer .col-12 {
    flex: 1 1 100%;
  }
}

@media (max-width: 767px) {
  .footer-top {
    padding: 2.5rem 0 1.5rem 0;
  }
  
  .footer .row {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer .col-6,
  .footer .col-lg-3,
  .footer .col-12 {
    flex: 1 1 100%;
    min-width: 100%;
    margin-bottom: 0;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
  
  .footer-contact-item {
    margin-bottom: 1.5rem;
  }
  
  .footer-bottom {
    padding: 1.25rem 0;
  }
  
  .footer-copyright {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 2rem 0 1rem 0;
  }
  
  .footer .container {
    padding: 0 1rem;
  }
  
  .footer-contact-item {
    gap: 0.5rem;
  }
  
  .footer-contact-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* ===========================
   PAGE DETAIL COMPONENT - SAYFA DETAY
   =========================== */

.welcome-banner-section {
  background-color: var(--bg);
  padding: 2rem 0 3rem 0;
}

.welcome-wrap {
  background: #ffffff;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.welcome-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange), #ff7700);
}

.welcome-content {
  font-family: var(--font-family);
  line-height: 1.8;
  color: var(--text);
}

.blog-text h1,
.blog-text h2,
.blog-text h3,
.blog-text h4,
.blog-text h5,
.blog-text h6 {
  font-family: var(--font-family);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  line-height: 1.3;
}

.blog-text h1 {
  font-size: 2.5rem;
  margin-top: 0;
}

.blog-text h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.blog-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--brand-orange);
}

.blog-text h3 {
  font-size: 1.75rem;
  color: var(--brand-orange);
}

.blog-text h4 {
  font-size: 1.5rem;
}

.blog-text h5 {
  font-size: 1.25rem;
}

.blog-text h6 {
  font-size: 1.125rem;
}

.blog-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #4a5568;
}

.blog-text p:last-child {
  margin-bottom: 0;
}

.blog-text ul,
.blog-text ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-text li {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: #4a5568;
}

.blog-text li::marker {
  color: var(--brand-orange);
}

.blog-text ul li {
  position: relative;
}

.blog-text ul li::before {
  content: '•';
  color: var(--brand-orange);
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}

.blog-text blockquote {
  background: #f8fafc;
  border-left: 4px solid var(--brand-orange);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  position: relative;
}

.blog-text blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--brand-orange);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  opacity: 0.3;
}

.blog-text blockquote p {
  margin: 0;
  font-size: 1.125rem;
  color: #2d3748;
}

.blog-text a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.blog-text a:hover {
  color: var(--brand-orange-strong);
  border-bottom-color: var(--brand-orange-strong);
}

.blog-text a:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

.blog-text strong,
.blog-text b {
  font-weight: 600;
  color: #2d3748;
}

.blog-text em,
.blog-text i {
  font-style: italic;
  color: #4a5568;
}

.blog-text code {
  background: #f7fafc;
  padding: 0.25rem 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.9375rem;
  color: var(--brand-orange);
  border: 1px solid #e2e8f0;
}

.blog-text pre {
  background: #1a202c;
  color: #e2e8f0;
  padding: 1.5rem;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}

.blog-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-text table th,
.blog-text table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.blog-text table th {
  background: #f8fafc;
  font-weight: 600;
  color: #2d3748;
  border-bottom: 2px solid var(--brand-orange);
}

.blog-text table tr:hover {
  background: #f8fafc;
}

.blog-text img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-text hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
  margin: 3rem 0;
}

/* Special styling for center aligned content */
.blog-text .text-center {
  text-align: center;
  padding: 2rem 1rem;
}

.blog-text .text-center h1,
.blog-text .text-center h2,
.blog-text .text-center h3 {
  margin-top: 0;
}

/* Success/Info boxes */
.blog-text .alert {
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--brand-orange);
  background: rgba(255, 106, 0, 0.05);
  position: relative;
}

.blog-text .alert::before {
  content: 'ℹ';
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  color: var(--brand-orange);
  font-size: 1.25rem;
  font-weight: bold;
}

.blog-text .alert p {
  margin: 0;
  padding-left: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .welcome-banner-section {
    padding: 1.5rem 0 2rem 0;
  }
  
  .welcome-wrap {
    padding: 2rem 1.5rem;
  }
  
  .blog-text h1 {
    font-size: 2rem;
  }
  
  .blog-text h2 {
    font-size: 1.75rem;
  }
  
  .blog-text h3 {
    font-size: 1.5rem;
  }
  
  .blog-text p,
  .blog-text li {
    font-size: 1rem;
  }
  
  .blog-text ul,
  .blog-text ol {
    padding-left: 1.5rem;
  }
  
  .blog-text blockquote {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
  }
  
  .blog-text blockquote::before {
    font-size: 3rem;
    top: -0.25rem;
    left: 0.75rem;
  }
  
  .blog-text table {
    font-size: 0.875rem;
  }
  
  .blog-text table th,
  .blog-text table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .welcome-wrap {
    padding: 1.5rem 1rem;
  }
  
  .blog-text h1 {
    font-size: 1.75rem;
  }
  
  .blog-text h2 {
    font-size: 1.5rem;
  }
  
  .blog-text h3 {
    font-size: 1.25rem;
  }
  
  .blog-text blockquote {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .blog-text .text-center {
    padding: 1.5rem 0.5rem;
  }
  
  .blog-text table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Print styles */
@media print {
  .header__mobile-toggle,
  .mobile-menu,
  .header__cta {
    display: none !important;
  }
  
  .header {
    position: static;
    box-shadow: none;
  }
  
  .header__nav {
    display: block !important;
  }
  
  .footer {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-top: 2px solid #000000;
  }
  
  .footer-social,
  .social-link {
    display: none !important;
  }
  
  .welcome-wrap {
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
}
