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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: #6b7280;
}

.content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

p {
    margin-bottom: 1rem;
}
ul {
    margin-left: 1rem;
}

ol {
  padding-inline-start: 0;
  margin-block-end: 1em;
  counter-reset: section;
}

ol li {
  display: block;
  margin-bottom: 0.5em;
}

li > p {
  display: inline;
}

ol > li {
  counter-increment: section;
}

ol > li::before {
  content: counter(section) ". ";
  font-weight: bold;
}

ol > li > ol {
  counter-reset: subsection;
}

ol > li > ol > li {
  counter-increment: subsection;
}

ol > li > ol > li::before {
  content: counter(section) "." counter(subsection) " ";
  margin-inline-end: 0.2em;
}

ol > li > ol > li > ol {
  counter-reset: subsubsection;
}

ol > li > ol > li > ol > li {
  counter-increment: subsubsection;
}

ol > li > ol > li > ol > li::before {
  content: counter(section) "." counter(subsection) "." counter(subsubsection) " ";
}

ol ol {
  margin-block-end: 0;
  padding-inline-start: 1.5em;
}

.section {
    margin-bottom: 2rem;
}

.section h2 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.contact-info {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.label {
    font-weight: 600;
    color: #374151;
    display: inline-block;
    min-width: 120px;
}

.value {
    color: #6b7280;
}

.email-link {
    color: #2563eb;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
    color: #6b7280;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }

    .company-name {
        font-size: 2rem;
    }

    .content {
        padding: 1.5rem;
    }
}

.privacy-link {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.privacy-link:hover {
    background: #1d4ed8;
}
