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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #004499;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #0066cc;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: #333;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  border-bottom-color: #0066cc;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Section */
.section {
  padding: 60px 0;
}

.section-gray {
  background-color: #f8f9fa;
}

.section-warning {
  background-color: #fff3cd;
  border-top: 3px solid #ffc107;
  border-bottom: 3px solid #ffc107;
}

/* Page Header */
.page-header {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
  border-bottom: 3px solid #0066cc;
}

.page-header h1 {
  font-size: 42px;
  color: #0066cc;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  color: #666;
}

.page-header-warning {
  background-color: #fff3cd;
  border-bottom-color: #ffc107;
}

/* Intro Grid */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-text h2 {
  font-size: 36px;
  color: #0066cc;
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #555;
}

/* Product Section */
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-content h2 {
  font-size: 32px;
  color: #0066cc;
  margin-bottom: 20px;
}

.product-content h3 {
  font-size: 24px;
  color: #333;
  margin: 25px 0 15px;
}

.product-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 17px;
  color: #555;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: bold;
  font-size: 20px;
}

.info-box {
  background-color: #e7f3ff;
  border-left: 4px solid #0066cc;
  padding: 20px;
  margin-top: 25px;
  border-radius: 5px;
}

.info-box p {
  margin: 0;
}

/* Care Section */
.care-section h2 {
  font-size: 36px;
  color: #0066cc;
  text-align: center;
  margin-bottom: 50px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.care-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.care-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.care-card h3 {
  font-size: 22px;
  color: #0066cc;
  margin-bottom: 15px;
}

.care-card p {
  font-size: 16px;
  color: #555;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
  font-size: 22px;
  color: #0066cc;
  margin-bottom: 15px;
}

.benefit-item p {
  font-size: 16px;
  color: #555;
}

/* Newsletter Box */
.newsletter-box {
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  color: #fff;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter-box p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0066cc;
}

.newsletter-form input {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

.form-checkbox a {
  color: #fff;
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background-color: #fff;
  color: #0066cc;
}

.btn-primary:hover {
  background-color: #f0f0f0;
  color: #004499;
}

.btn-secondary {
  background-color: #f8f9fa;
  color: #333;
}

.btn-secondary:hover {
  background-color: #e0e0e0;
}

.btn-large {
  padding: 15px 40px;
  font-size: 18px;
}

/* Disclaimer Box */
.disclaimer-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  border: 3px solid #ffc107;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box h2 {
  font-size: 28px;
  color: #ff6b00;
  margin-bottom: 20px;
  text-align: center;
}

.disclaimer-text {
  font-size: 22px;
  font-weight: 700;
  color: #d9534f;
  text-align: center;
  margin-bottom: 20px;
}

.disclaimer-box p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #0066cc;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: #0066cc;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: #0066cc;
  text-decoration: underline;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: 36px;
  color: #0066cc;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 25px;
  font-weight: 500;
}

.about-content h3 {
  font-size: 24px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Qualifications */
.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.qual-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #0066cc;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.qual-card h3 {
  font-size: 20px;
  color: #0066cc;
  margin-bottom: 10px;
}

.qual-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

/* Philosophy */
.philosophy-box {
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-box h2 {
  font-size: 36px;
  color: #0066cc;
  text-align: center;
  margin-bottom: 40px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.philosophy-item {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  border-top: 4px solid #0066cc;
}

.philosophy-item h3 {
  font-size: 20px;
  color: #0066cc;
  margin-bottom: 15px;
}

.philosophy-item p {
  font-size: 16px;
  color: #555;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 32px;
  color: #0066cc;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.small-text {
  font-size: 14px;
  color: #888;
  margin-top: 5px;
}

.contact-form-box {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
  font-size: 28px;
  color: #0066cc;
  margin-bottom: 15px;
}

.contact-form-box > p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-note {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
}

.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.info-box-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-box-card h3 {
  font-size: 22px;
  color: #0066cc;
  margin-bottom: 15px;
}

.info-box-card p {
  font-size: 16px;
  color: #555;
}

/* Thank You Page */
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: #28a745;
  color: #fff;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thank-you-box h1 {
  font-size: 42px;
  color: #0066cc;
  margin-bottom: 20px;
}

.thank-you-message {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
}

.thank-you-content h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}

.thank-you-content > p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.step-item {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
}

.step-item h3 {
  font-size: 20px;
  color: #0066cc;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 15px;
  color: #555;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.resource-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.resource-card h3 {
  font-size: 22px;
  color: #0066cc;
  margin-bottom: 15px;
}

.resource-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.text-link {
  color: #0066cc;
  font-weight: 600;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: #004499;
}

/* Policy Pages */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 28px;
  color: #0066cc;
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  font-size: 22px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.policy-content ul {
  margin: 15px 0 15px 30px;
}

.policy-content ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.7;
}

.policy-content strong {
  color: #333;
  font-weight: 600;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #e0e0e0;
}

.cookie-table th {
  background-color: #f8f9fa;
  color: #0066cc;
  font-weight: 600;
}

.cookie-table td {
  font-size: 15px;
  color: #555;
}

.warning-box-large {
  background-color: #fff3cd;
  border: 3px solid #ffc107;
  border-radius: 10px;
  padding: 40px;
  margin: 30px 0;
  text-align: center;
}

.warning-box-large h2 {
  color: #ff6b00;
  margin-bottom: 20px;
}

.large-text {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .intro-grid,
  .product-section,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .care-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-box {
    padding: 30px 20px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .thank-you-box h1 {
    font-size: 32px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .intro-text h2,
  .product-content h2 {
    font-size: 28px;
  }

  .care-section h2,
  .about-content h2 {
    font-size: 28px;
  }
}
