/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&family=Roboto+Slab:wght@400;500;600&display=swap');

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: 'Roboto', sans-serif;
  color: #666;
  line-height: 1.6;
}

/* Header styles */
header {
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.625rem 0;
}

header .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

header .header-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0 2rem 0;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  header .header-content {
    flex-direction: row;
    padding-bottom: 0;
    gap: 0;
  }
}

header .logo {
  text-decoration: none;
}

header .logo img {
  width: 200px;
}

header nav {
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  header nav {
    gap: 2rem;
  }
}

header .tenant-login {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.75px;
  color: black;
  background-color: white;
  border: 1px solid black;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

header .tenant-login:hover {
  background-color: #f3f4f6;
}

/* Main content styles */
main {
  min-height: 100vh;
  background-color: #f9fafb;
  padding: 2rem 0;
}

@media (min-width: 640px) {
  main {
    padding: 3rem 0;
  }
}

@media (min-width: 1024px) {
  main {
    padding: 4rem 0;
  }
}

main .container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  main .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  main .container {
    padding: 0 2rem;
  }
}

main .content-wrapper {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  main .content-wrapper {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  main .content-wrapper {
    padding: 3rem;
  }
}

/* Page title styles */
.page-title {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .page-title {
    margin-bottom: 3rem;
  }
}

.page-title h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .page-title h1 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .page-title h1 {
    font-size: 2.25rem;
  }
}

.page-title p {
  color: #666;
  font-weight: 500;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .page-title p {
    font-size: 1rem;
  }
}

/* Introduction styles */
.introduction {
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .introduction {
    margin-bottom: 3rem;
  }
}

.introduction p {
  color: #666;
  font-size: 1rem;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .introduction p {
    font-size: 1.125rem;
  }
}

/* Section styles */
.sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 640px) {
  .sections {
    gap: 2.5rem;
  }
}

section {
  margin-bottom: 0;
}

section h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 640px) {
  section h2 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  section h2 {
    font-size: 1.5rem;
  }
}

section p {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  section p {
    font-size: 1rem;
  }
}

section p:last-child {
  margin-bottom: 0;
}

section strong {
  font-weight: 600;
}

section ul {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.625;
  list-style-type: disc;
  list-style-position: inside;
  margin-left: 1rem;
}

@media (min-width: 640px) {
  section ul {
    font-size: 1rem;
  }
}

section ul li {
  margin-bottom: 0.5rem;
}

section ul li:last-child {
  margin-bottom: 0;
}

section a {
  color: #666;
  text-decoration: underline;
  transition: color 0.2s;
}

section a:hover {
  color: #333;
}

/* Footer styles */
footer {
  background-color: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  padding: 2rem 0;
}

@media (min-width: 640px) {
  footer {
    padding: 3rem 0;
  }
}

footer .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  footer .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  footer .container {
    padding: 0 2rem;
  }
}

footer .footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  footer .footer-left {
    gap: 0.75rem;
  }
}

footer .copyright {
  color: #666;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  footer .copyright {
    font-size: 1rem;
  }
}

footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer .footer-links a:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  footer .footer-links {
    flex-direction: row;
    gap: 1rem;
  }
}

footer .footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  footer .footer-links a {
    font-size: 1rem;
  }
}

footer .footer-links a:hover {
  color: #333;
}

footer .footer-right {
  text-align: center;
}

@media (min-width: 640px) {
  footer .footer-right {
    text-align: right;
  }
}

footer .footer-right p {
  color: #666;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  footer .footer-right p {
    font-size: 1rem;
  }
}

footer .footer-right a {
  color: #666;
  text-decoration: underline;
  transition: color 0.2s;
}

footer .footer-right a:hover {
  color: #333;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .sm\:mb-12 {
    margin-bottom: 3rem;
  }
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .sm\:space-y-0 > * + * {
    margin-top: 0;
  }
  
  .sm\:space-x-4 > * + * {
    margin-left: 1rem;
  }
  
  .sm\:space-x-6 > * + * {
    margin-left: 1.5rem;
  }
  
  .sm\:space-x-8 > * + * {
    margin-left: 2rem;
  }
}

@media (min-width: 640px) {
  .sm\:space-y-10 > * + * {
    margin-top: 2.5rem;
  }
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  
  .sm\:justify-between {
    justify-content: space-between;
  }
  
  .sm\:items-center {
    align-items: center;
  }
  
  .sm\:text-base {
    font-size: 1rem;
  }
  
  .sm\:text-lg {
    font-size: 1.125rem;
  }
  
  .sm\:text-xl {
    font-size: 1.25rem;
  }
  
  .sm\:text-2xl {
    font-size: 1.5rem;
  }
  
  .sm\:text-3xl {
    font-size: 1.875rem;
  }
  
  .sm\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .sm\:p-8 {
    padding: 2rem;
  }
  
  .sm\:gap-6 {
    gap: 1.5rem;
  }
  
  .sm\:gap-8 {
    gap: 2rem;
  }
  
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:text-4xl {
    font-size: 2.25rem;
  }
  
  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .lg\:p-12 {
    padding: 3rem;
  }
  
  .lg\:text-2xl {
    font-size: 1.5rem;
  }
}
