/* Tendrrr Support Site Styles */

:root {
      --primary: #FF6633;
      --primary-dark: #E55A2B;
      --secondary: #FFCC99;
      --text: #333333;
      --text-light: #666666;
      --background: #FFFAF5;
      --white: #FFFFFF;
      --border: #EEEEEE;
}

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

body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
      background: var(--background);
      color: var(--text);
      line-height: 1.6;
}

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

/* Header */
header {
      text-align: center;
      padding: 40px 0;
}

.logo {
      font-size: 64px;
      margin-bottom: 10px;
}

h1 {
      font-size: 2.5rem;
      color: var(--text);
      margin-bottom: 10px;
}

.tagline {
      font-size: 1.2rem;
      color: var(--text-light);
}

.back-link {
      display: inline-block;
      margin-bottom: 20px;
      color: var(--primary);
      text-decoration: none;
}

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

.last-updated {
      font-size: 0.9rem;
      color: var(--text-light);
}

/* Main Content */
main {
      padding: 20px 0;
}

section {
      margin-bottom: 40px;
}

h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: var(--text);
}

h3 {
      font-size: 1.1rem;
      margin: 20px 0 10px;
      color: var(--text);
}

p {
      margin-bottom: 15px;
}

ul, ol {
      margin: 15px 0 15px 25px;
}

li {
      margin-bottom: 8px;
}

a {
      color: var(--primary);
}

/* Hero Section */
.hero {
      text-align: center;
      padding: 30px;
      background: var(--white);
      border-radius: 16px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero p {
      font-size: 1.1rem;
      max-width: 500px;
      margin: 0 auto 25px;
}

.download-btn {
      display: inline-block;
      background: var(--primary);
      color: var(--white);
      padding: 15px 30px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.2s;
}

.download-btn:hover {
      background: var(--primary-dark);
}

/* Features Grid */
.feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
}

.feature {
      background: var(--white);
      padding: 25px;
      border-radius: 12px;
      text-align: center;
}

.feature-icon {
      font-size: 2rem;
      display: block;
      margin-bottom: 10px;
}

.feature h3 {
      margin: 0 0 10px;
      font-size: 1rem;
}

.feature p {
      font-size: 0.9rem;
      color: var(--text-light);
      margin: 0;
}

/* FAQ */
.faq-item {
      background: var(--white);
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 15px;
}

.faq-item h3 {
      margin: 0 0 10px;
      color: var(--primary-dark);
}

.faq-item p {
      margin: 0;
}

.faq-item ol {
      margin: 10px 0 0 20px;
}

/* Contact */
.contact {
      text-align: center;
      padding: 30px;
      background: var(--white);
      border-radius: 16px;
}

.contact-options {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 20px 0;
}

.contact-btn {
      display: inline-block;
      padding: 12px 24px;
      background: var(--background);
      color: var(--text);
      text-decoration: none;
      border-radius: 8px;
      border: 1px solid var(--border);
      transition: all 0.2s;
}

.contact-btn:hover {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
}

.response-time {
      font-size: 0.85rem;
      color: var(--text-light);
}

/* Privacy Content */
.privacy-content {
      background: var(--white);
      padding: 30px;
      border-radius: 16px;
}

.privacy-content h2 {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
}

.privacy-content h2:first-child {
      margin-top: 0;
      padding-top: 0;
      border-top: none;
}

/* Links Section */
.links {
      text-align: center;
      padding: 20px 0;
}

.links a {
      margin: 0 15px;
      color: var(--text-light);
      text-decoration: none;
}

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

/* Footer */
footer {
      text-align: center;
      padding: 40px 0;
      color: var(--text-light);
      font-size: 0.9rem;
}

.copyright {
      margin-top: 10px;
      font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 600px) {
      h1 {
                font-size: 2rem;
      }

    .hero {
              padding: 20px;
    }

    .feature-grid {
              grid-template-columns: 1fr;
    }

    .contact-options {
              flex-direction: column;
    }

    .privacy-content {
              padding: 20px;
    }
}
