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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol, ul, dl {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

pre, code, kbd, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"], input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/* Header styles */
/* Base Variables */
  :root {
    --primary: #ff5722;
    --primary-dark: #e64a19;
    --secondary: #2196f3;
    --dark: #1a1a2e;
    --darker: #121225;
    --light: #f5f5f7;
    --gray: #6c757d;
    --success: #4caf50;
    --danger: #f44336;
    --warning: #ff9800;
    --info: #00bcd4;
    
    --header-height: 80px;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
  }

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

  /* Header Styles */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    font-family: var(--font-primary);
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: var(--header-height);
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Logo Styles */
  .logo-container {
    flex: 0 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
    transition: var(--transition);
  }

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

  .logo-icon {
    margin-right: 0.5rem;
    color: var(--primary);
  }

  .logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
  }

  /* Navigation Styles */
  .desktop-nav {
    margin-left: 2rem;
  }

  .nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--border-radius);
    position: relative;
  }

  .nav-link:hover {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.05);
  }

  .nav-link.active {
    color: var(--primary);
    background-color: rgba(255, 87, 34, 0.1);
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
  }

  /* Header Actions */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .search-toggle, .theme-button {
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.05);
  }

  .search-toggle:hover, .theme-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
  }

  /* Mobile Toggle Button */
  .mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .toggle-line {
    width: 100%;
    height: 2px;
    background-color: var(--light);
    transition: var(--transition);
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--darker);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 1.5rem;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }

  .close-menu {
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.05);
  }

  .close-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--danger);
  }

  .mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-nav-link {
    display: block;
    padding: 1rem;
    color: var(--light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--border-radius);
    border-left: 3px solid transparent;
  }

  .mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: var(--primary);
    padding-left: 1.5rem;
  }

  .mobile-nav-link.active {
    color: var(--primary);
    background-color: rgba(255, 87, 34, 0.1);
    border-left-color: var(--primary);
    padding-left: 1.5rem;
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
    .nav-link {
      padding: 0.5rem 0.75rem;
      font-size: 0.9rem;
    }
  }

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

    .mobile-toggle {
      display: flex;
    }

    .header-container {
      padding: 0 1rem;
      height: 70px;
    }

    .logo-text {
      font-size: 1.3rem;
    }
  }

  @media (min-width: 769px) {
    .mobile-menu {
      display: none;
    }
  }

/* Footer styles */
/* Base Footer Styles */
  .footer-main {
    width: 100%;
    background: linear-gradient(135deg, #1a1e26 0%, #0d1117 100%);
    color: #e0e0e0;
    font-family: 'Poppins', 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ff6b00;
  }
  
  .footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.5), transparent);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
  }
  
  /* Grid Layout */
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
  }
  
  /* Section Styling */
  .footer-section {
    position: relative;
  }
  
  .footer-heading {
    color: #ff6b00;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff6b00;
    border-radius: 2px;
  }
  
  /* Navigation Lists */
  .footer-nav-list,
  .footer-resources-list,
  .footer-popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav-list li,
  .footer-resources-list li,
  .footer-popular-list li {
    margin-bottom: 12px;
  }
  
  .footer-link {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    display: inline-block;
  }
  
  .footer-link::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #ff6b00;
    opacity: 0.7;
    transform: scale(0.8);
    transition: transform 0.3s ease;
  }
  
  .footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
  }
  
  .footer-link:hover::before {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Contact Section */
  .footer-contact-info {
    margin-bottom: 20px;
  }
  
  .footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #b8b8b8;
  }
  
  .footer-contact-item i {
    color: #ff6b00;
    margin-right: 10px;
    width: 16px;
    text-align: center;
  }
  
  /* Social Media */
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b00, #ff3c00);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
  }
  
  .footer-social-link i {
    position: relative;
    z-index: 1;
    font-size: 18px;
    transition: transform 0.3s ease;
  }
  
  .footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
  }
  
  .footer-social-link:hover::before {
    opacity: 1;
  }
  
  .footer-social-link:hover i {
    color: #ffffff;
    transform: scale(1.2);
  }
  
  /* Newsletter */
  .footer-newsletter-text {
    color: #b8b8b8;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-input {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .footer-input:focus {
    outline: none;
    border-color: #ff6b00;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  }
  
  .footer-button {
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    background: linear-gradient(135deg, #ff6b00, #ff3c00);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .footer-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
  }
  
  .footer-button:hover::before {
    left: 100%;
  }
  
  .footer-button:active {
    transform: translateY(0);
  }
  
  /* Divider */
  .footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0 auto 30px;
    width: 90%;
  }
  
  /* Bottom Section */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
  }
  
  .footer-legal-link {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff6b00;
    transition: width 0.3s ease;
  }
  
  .footer-legal-link:hover {
    color: #ff6b00;
  }
  
  .footer-legal-link:hover::after {
    width: 100%;
  }
  
  .footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .footer-disclaimer-text {
    color: #777777;
    font-size: 12px;
    line-height: 1.5;
  }
  
  .footer-copyright {
    margin-top: 10px;
  }
  
  .footer-copyright-text {
    color: #777777;
    font-size: 14px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-container {
      padding: 40px 20px 20px;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .footer-heading {
      font-size: 1.1rem;
      margin-bottom: 15px;
    }
    
    .footer-newsletter-form {
      flex-direction: column;
    }
    
    .footer-legal {
      flex-direction: column;
      gap: 15px;
    }
    
    .footer-social {
      justify-content: center;
    }
  }
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-newsletter {
      grid-column: span 2;
    }
  }
  
  @media (min-width: 1025px) {
    .footer-newsletter {
      grid-column: span 2;
    }
    
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      text-align: left;
    }
    
    .footer-legal {
      justify-content: flex-start;
      margin-bottom: 0;
    }
    
    .footer-copyright {
      margin-top: 0;
    }
    
    .footer-disclaimer {
      margin: 0;
      max-width: 500px;
    }
  }

/* Cookie Banner styles */
.cookie-message a {
    color: #ff9800;
    text-decoration: underline;
  }

  .cookie-message a:hover {
    color: #ffb74d;
  }

  .cookie-buttons-container {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
  }

  .cookie-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-transform: uppercase;
  }

  .cookie-accept {
    background-color: #ff9800;
    color: #000;
  }

  .cookie-accept:hover {
    background-color: #ffb74d;
  }

  .cookie-reject {
    background-color: #424242;
    color: #fff;
  }

  .cookie-reject:hover {
    background-color: #616161;
  }

  @media (max-width: 768px) {
    .cookie-content-wrapper {
      padding: 15px;
    }
    
    .cookie-buttons-container {
      flex-direction: column;
    }
    
    .cookie-btn {
      width: 100%;
      margin-bottom: 10px;
    }
  }

.cookie-notification-panel {
  position: fixed;
  padding: 10px;
  bottom: 0;
  background-color: #000;
}