* {
  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: #2d3748;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f5f0 100%);
  overflow-x: hidden;
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4ade80 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-link {
  color: #4a5568;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #14b8a6;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4ade80, #14b8a6);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  background: linear-gradient(135deg, #4ade80, #14b8a6);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f5f0 50%, #d4f4dd 100%);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0c16.569 0 30 13.431 30 30 0 16.569-13.431 30-30 30C13.431 60 0 46.569 0 30 0 13.431 13.431 0 30 0zm0 10c-11.046 0-20 8.954-20 20s8.954 20 20 20 20-8.954 20-20-8.954-20-20-20z' fill='%234ade80' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  transform: translateY(-20px);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(-20px);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #2d3748 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;
}

.btn-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #4ade80 0%, #14b8a6 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-hero:hover {
  transform: translateY(-2px) rotate(1deg);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
  color: white;
  text-decoration: none;
}

.btn-hero:hover::before {
  left: 100%;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, #2d3748 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cards-section {
  padding: 5rem 0;
  background: white;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px) rotate(1deg);
  border-color: #4ade80;
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #718096;
  line-height: 1.7;
}

.wave-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f5f0 100%);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: 3rem 0;
}

.rounded-organic {
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.rounded-organic:hover {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.benefit-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: #4a5568;
  font-size: 1.05rem;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
  font-size: 1.2rem;
}

.superfoods-section {
  padding: 5rem 0;
  background: white;
}

.superfood-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.superfood-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.15);
}

.superfood-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.superfood-content {
  padding: 1.5rem;
}

.superfood-content h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.superfood-content p {
  color: #718096;
  line-height: 1.6;
}

.care-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #d4f4dd 0%, #e8f5f0 100%);
}

.habit-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border-left: 4px solid #4ade80;
  backdrop-filter: blur(10px);
}

.habit-item h4 {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.habit-item p {
  color: #718096;
  margin-bottom: 0;
}

.tips-section {
  padding: 5rem 0;
  background: white;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid #4ade80;
}

.tip-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.15);
}

.tip-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4ade80, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.tip-card h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tip-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 0;
}

.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f5f0 100%);
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.15);
}

.faq-item h3 {
  color: #2d3748;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-item p {
  color: #718096;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonials-section {
  padding: 5rem 0;
  background: white;
}

.testimonial-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border-left: 4px solid #4ade80;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.testimonial-card p {
  color: #4a5568;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #718096;
  font-size: 0.9rem;
}

.expert-quote-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #14b8a6 0%, #4ade80 100%);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  margin: 3rem 0;
}

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

.quote-icon {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}

.expert-quote blockquote p {
  font-size: 1.5rem;
  color: white;
  line-height: 1.8;
  font-weight: 500;
  margin: 1rem 0 2rem 0;
}

.quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-author strong {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.quote-author span {
  color: rgba(255, 255, 255, 0.9);
}

.supplements-section {
  padding: 5rem 0;
  background: white;
}

.supplement-guide {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.supplement-guide:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.supplement-guide h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 600;
}

.supplement-guide p {
  color: #718096;
  line-height: 1.7;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f5f0 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  color: #718096;
  margin-bottom: 2rem;
}

.btn-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #4ade80 0%, #14b8a6 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
  color: white;
  text-decoration: none;
}

.site-footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
  padding: 4rem 0 2rem 0;
}

.footer-brand {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4ade80 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.site-footer h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer p {
  color: #cbd5e0;
  line-height: 1.7;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #4ade80;
  transform: translateX(5px);
  display: inline-block;
}

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

.footer-bottom p {
  color: #a0aec0;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(45, 55, 72, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

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

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

.cookie-content a {
  color: #4ade80;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-decline {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, #4ade80, #14b8a6);
  color: white;
}

.btn-cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.btn-cookie-decline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-decline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.page-hero {
  padding: 8rem 0 5rem 0;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f5f0 100%);
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  position: relative;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2d3748 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: #718096;
}

.about-philosophy {
  padding: 5rem 0;
  background: white;
}

.principles-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f5f0 100%);
}

.principle-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.principle-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.principle-card h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 600;
}

.principle-card p {
  color: #718096;
  line-height: 1.7;
}

.body-energy-section {
  padding: 5rem 0;
  background: white;
}

.integration-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.integration-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: #4a5568;
}

.integration-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

.nutritionist-role-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #d4f4dd 0%, #e8f5f0 100%);
}

.role-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  backdrop-filter: blur(10px);
}

.role-card h3 {
  font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 600;
}

.role-card p {
  color: #718096;
  line-height: 1.7;
}

.gradual-approach-section {
  padding: 5rem 0;
  background: white;
}

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

.step-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #14b8a6);
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.step-card h3 {
  font-size: 1.4rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-card p {
  color: #718096;
  line-height: 1.7;
}

.expert-quotes-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f5f0 100%);
}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.expert-quote-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  backdrop-filter: blur(10px);
}

.quote-mark {
  font-size: 4rem;
  color: #4ade80;
  opacity: 0.3;
  line-height: 1;
}

.expert-quote-card p {
  color: #4a5568;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.expert-info {
  display: flex;
  flex-direction: column;
  border-top: 2px solid #4ade80;
  padding-top: 1rem;
}

.expert-info strong {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.expert-info span {
  color: #718096;
  font-size: 0.9rem;
}

.commitment-section {
  padding: 5rem 0;
  background: white;
}

.commitment-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(74, 222, 128, 0.1);
  border-left: 6px solid #4ade80;
}

.commitment-box h2 {
  color: #2d3748;
  margin-bottom: 1.5rem;
}

.commitment-box p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.commitment-note {
  background: rgba(74, 222, 128, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid #4ade80;
  margin-top: 2rem;
}

.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-form .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.contact-form label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.btn-submit {
  padding: 0.75rem 2.5rem;
  background: linear-gradient(135deg, #4ade80, #14b8a6);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
}

.contact-info {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8f5f0 100%);
  padding: 2.5rem;
  border-radius: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 2rem;
  margin-right: 1rem;
  min-width: 40px;
}

.info-content h3 {
  font-size: 1.2rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-content p {
  color: #718096;
  margin-bottom: 0;
  line-height: 1.6;
}

.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}

.thankyou-box {
  text-align: center;
  background: white;
  padding: 4rem 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #14b8a6);
  color: white;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.thankyou-box h1 {
  color: #2d3748;
  margin-bottom: 1rem;
}

.thankyou-box p {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-back {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #4ade80, #14b8a6);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-back:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
  color: white;
  text-decoration: none;
}

.policy-section {
  padding: 5rem 0;
  background: white;
}

.policy-section h1 {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.update-date {
  color: #718096;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.75rem;
  color: #2d3748;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-content h3 {
  font-size: 1.3rem;
  color: #4a5568;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.policy-content p {
  color: #718096;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  color: #718096;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: #14b8a6;
  text-decoration: underline;
}

.policy-content a:hover {
  color: #4ade80;
}

.disclaimer-content {
  background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
  padding: 3rem;
  border-radius: 20px;
  border-left: 6px solid #f87171;
}

.important-notice {
  background: #fef2f2;
  border: 2px solid #f87171;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.important-notice h2 {
  color: #dc2626;
  margin-top: 0;
}

.important-notice p {
  color: #991b1b;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .expert-quote blockquote p {
    font-size: 1.25rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

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