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

body {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

h1 {
  font-size: 27px;
}
h2 {
  font-size: 21px;
  margin-top: 32px;
}
h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
}

p {
  margin-bottom: 16px;
}

/* Links */
a {
  color: #0078d3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
}

.header-inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 24px;
}

.cxhacks-logo {
  height: 32px;
  width: 32px;
  margin-right: 8px;
}

.logo {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #cc0000;
}

.logo span {
  font-weight: 400;
  color: #000;
}

.blog-logo {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

.text-logo {
  display: inline-block;
}

.text-logo span {
  font-weight: 400;
  color: #000;
}
/* Main content */
main {
  flex: 1;
}

.nav {
  display: flex;
  gap: 20px;
  margin-left: 20px;
}

.main-nav {
  display: flex;
  gap: 20px;
  margin-left: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.main-nav a:hover {
  border-bottom: 2px solid #333;
}

.main-nav a.active {
  border-bottom: 2px solid #cc0000; /* Your red accent color */
}

/* Container */
.disclaimer-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 40px 16px;
}

/* Headings */
h1 {
  font-size: 32px;
  font-weight: 700;
  color: #cc0000; /* Match your site's red accent */
  margin: 40px 0;
}

.content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px; /* Same as header-inner */
}
/* Content */
.disclaimer-content {
  background-color: #f9f9f9;
  border-left: 4px solid #cc0000; /* Same red accent */
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin: 40px 0;
}

.disclaimer-content p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #444444;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

/* Optional link styling if needed later */
.disclaimer-content a {
  color: #0078d3; /* Match your blue hover accent */
  text-decoration: underline;
}

.disclaimer-content a:hover {
  color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .disclaimer-container {
    padding: 40px 16px;
  }

  h1 {
    font-size: 26px;
  }

  .disclaimer-content {
    padding: 20px;
  }
  .header-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 16px;
  }
  .mobile-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 3px 9px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
  }
  .mobile-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin: 0 6px;
    padding: 6px 0;
    display: inline-block;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    border-bottom: 2px solid #cc0000;
  }
  .main-nav {
    display: none;
  }
  .cxhacks-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .blog-logo {
    width: 32px;
    height: 32px;
    margin-right: 0;
  }
}

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