* {
  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: #2c3e50;
  background-color: #ffffff;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 20px;
  z-index: 1000;
  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;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: #3498db;
  text-decoration: underline;
}

.cookie-accept {
  background-color: #3498db;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.cookie-accept:hover {
  background-color: #2980b9;
}

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

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

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #3498db;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  transition: 0.3s;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

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

.hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
}

/* Sections */
.section {
  padding: 80px 0;
}

.bg-light {
  background-color: #f8f9fa;
}

.text-center {
  text-align: center;
}

.subtitle {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 50px;
}

h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #2c3e50;
}

h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
}

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

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

.intro-text p {
  margin-bottom: 20px;
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

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

.product-image img {
  width: 100%;
  border-radius: 10px;
}

.product-info h3 {
  color: #3498db;
  margin-top: 20px;
}

.product-benefits {
  margin: 30px 0;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #3498db;
}

.product-benefits h4 {
  color: #2c3e50;
  margin-bottom: 15px;
}

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

.product-benefits li {
  padding: 10px 0;
  border-bottom: 1px solid #ecf0f1;
  color: #555;
}

.product-benefits li:last-child {
  border-bottom: none;
}

.info-box {
  background-color: #e8f4fd;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #3498db;
}

/* Care Section */
.care-section h2 {
  margin-bottom: 10px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

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

.care-card:hover {
  transform: translateY(-5px);
}

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

.care-icon img {
  width: 80px;
  height: 80px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.benefit-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #3498db;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.benefit-item h3 {
  margin-bottom: 10px;
}

.benefit-item p {
  color: #555;
  line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer-section {
  background-color: #fff3cd;
  border-top: 5px solid #ffc107;
  border-bottom: 5px solid #ffc107;
}

.disclaimer-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-box h2 {
  color: #856404;
  margin-bottom: 30px;
  font-size: 32px;
}

.disclaimer-text {
  font-size: 20px;
  font-weight: 600;
  color: #856404;
  margin-bottom: 20px;
  line-height: 1.6;
}

.disclaimer-box p {
  font-size: 16px;
  color: #856404;
  line-height: 1.7;
}

/* Newsletter Section */
.newsletter-section {
  background-color: #2c3e50;
  color: #ffffff;
}

.newsletter-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  color: #ffffff;
  margin-bottom: 15px;
}

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

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

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

.newsletter-btn {
  padding: 15px 35px;
  background-color: #3498db;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background-color: #2980b9;
}

/* Footer */
.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 10px;
  color: #bdc3c7;
  line-height: 1.8;
}

.footer-col a {
  color: #3498db;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
}

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

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

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

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
}

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

.qualification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.qualification-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.qualification-card h3 {
  color: #3498db;
  margin-bottom: 15px;
}

.mission-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-info-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-box h2 {
  margin-bottom: 25px;
}

.contact-info-box p {
  margin-bottom: 15px;
  font-size: 17px;
}

.contact-info-box a {
  color: #3498db;
  text-decoration: none;
}

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

.contact-info-section h2 {
  margin-bottom: 30px;
}

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

.contact-detail h3 {
  color: #3498db;
  margin-bottom: 10px;
  font-size: 20px;
}

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

.contact-detail a {
  color: #3498db;
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-form-section h2 {
  margin-bottom: 15px;
}

.contact-form-section p {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

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

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

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

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

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

.checkbox-group {
  flex-direction: row;
  align-items: start;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  cursor: pointer;
  align-items: start;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label span {
  flex: 1;
  color: #555;
  line-height: 1.5;
}

.checkbox-label a {
  color: #3498db;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-btn {
  padding: 15px 40px;
  background-color: #3498db;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #2980b9;
}

.map-section {
  max-width: 900px;
  margin: 0 auto;
}

.map-placeholder {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
  width: 100%;
  display: block;
}

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

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

.thank-you-icon {
  margin-bottom: 30px;
}

.thank-you-icon img {
  width: 120px;
  height: 120px;
}

.thank-you-box h1 {
  font-size: 48px;
  color: #27ae60;
  margin-bottom: 20px;
}

.thank-you-message {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.thank-you-box p {
  color: #555;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.thank-you-info {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin: 40px 0;
  text-align: left;
}

.thank-you-info h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.thank-you-list {
  list-style: none;
  padding: 0;
}

.thank-you-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
}

.thank-you-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 20px;
}

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

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary {
  background-color: #3498db;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #2980b9;
}

.btn-secondary {
  background-color: #ecf0f1;
  color: #2c3e50;
}

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

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
}

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

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 10px;
  color: #555;
}

.legal-content a {
  color: #3498db;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

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

.warning-box h2 {
  color: #856404;
  margin-bottom: 20px;
  margin-top: 0;
}

.warning-box .large-text {
  font-size: 20px;
  font-weight: 700;
  color: #856404;
  line-height: 1.6;
}

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

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

.cookie-table th {
  background-color: #3498db;
  color: #ffffff;
  font-weight: 600;
}

.cookie-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 968px) {
  .intro-grid,
  .product-section,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .nav.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 0;
  }

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

  .section {
    padding: 50px 0;
  }

  h2 {
    font-size: 28px;
  }

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

  .cookie-accept {
    width: 100%;
  }
}
