@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #8b2339; 
  --secondary-color: #1a5276; 
  --accent-color: #2e8b57; 
  --light-color: #f9f9f9;
  --dark-color: #333333;
  --grey-color: #666666;
  --light-grey-color: #e0e0e0;
  
  --primary-gradient: linear-gradient(135deg, var(--primary-color), #c62f55);
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color), #2980b9);
  --accent-gradient: linear-gradient(135deg, var(--accent-color), #3cb371);
  
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --button-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  --hover-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-normal);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--grey-color);
}

.btn-primary, .btn-secondary, .btn-outline, .btn-back {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--button-shadow);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow);
  color: white;
}

.btn-secondary {
  background: var(--secondary-gradient);
  color: white;
  box-shadow: var(--button-shadow);
  border: none;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.btn-back {
  display: flex;
  align-items: center;
  background: transparent;
  color: white;
  border: 2px solid white;
  font-size: 0.875rem;
  padding: 10px 20px;
}

.btn-back::before {
  content: "←";
  margin-right: 8px;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-3px);
}

.header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: block;
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-normal);
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

.nav-menu li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  position: absolute;
  left: 0;
  transition: var(--transition-normal);
}

.menu-toggle span:first-child {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span:last-child {
  bottom: 0;
}

.hero {
  position: relative;
  padding: 80px 0;
  background: var(--secondary-gradient);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.hero-image img {
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.programs {
  padding: 80px 0;
  background-color: #f4f8fb;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.program-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.program-image {
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.program-card:hover .program-image img {
  transform: scale(1.05);
}

.program-content {
  padding: 25px;
}

.program-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.program-features {
  margin: 20px 0;
}

.program-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.program-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.benefits {
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background-color: white;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(46, 139, 87, 0.1);
  border-radius: 50%;
}

.benefit-item h3 {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.about {
  padding: 80px 0;
  background-color: #f4f8fb;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about-content p {
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.testimonials {
  padding: 80px 0;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.testimonial-content {
  position: relative;
  padding-top: 20px;
  margin-bottom: 30px;
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: 'Georgia', serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--grey-color);
  margin-bottom: 0;
}

.contact {
  padding: 80px 0;
  background-color: #f4f8fb;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.contact-info {
  flex: 1;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.principles ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.principles ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.5rem;
}

.contact-form {
  flex: 1;
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-grey-color);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(139, 35, 57, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group.checkbox input {
  width: auto;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 0.9rem;
}

.contact-form button {
  width: 100%;
  margin-top: 10px;
}

.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 30px;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo p {
  margin-top: 15px;
  opacity: 0.8;
}

.footer-nav,
.footer-legal,
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: white;
  opacity: 0.8;
  transition: var(--transition-normal);
}

.footer ul li a:hover {
  opacity: 1;
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact p {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.thankyou {
  padding: 100px 0;
  text-align: center;
}

.thankyou-content {
  max-width: 700px;
  margin: 0 auto;
  background-color: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.thankyou h1 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.checkmark-circle {
  width: 100px;
  height: 100px;
  background-color: rgba(46, 139, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.checkmark {
  position: relative;
  width: 50px;
  height: 25px;
  border-bottom: 5px solid var(--accent-color);
  border-right: 5px solid var(--accent-color);
  transform: rotate(45deg);
}

.message {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.sub-message {
  color: var(--grey-color);
  margin-bottom: 40px;
}

.next-steps {
  background-color: #f4f8fb;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: left;
}

.next-steps h2 {
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.next-steps ul {
  list-style-type: disc;
  padding-left: 20px;
}

.next-steps ul li {
  margin-bottom: 10px;
}

.policy-header {
  background: var(--primary-gradient);
  color: white;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.cookie-header {
  background: var(--secondary-gradient);
}

.terms-header {
  background: var(--accent-gradient);
}

.policy-date {
  margin-bottom: 20px;
  opacity: 0.8;
}

.policy-content {
  padding: 60px 0;
}

.policy-wrapper {
  display: flex;
  gap: 40px;
}

.policy-nav {
  width: 280px;
  flex-shrink: 0;
}

.sticky-nav {
  position: sticky;
  top: 100px;
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.sticky-nav h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.sticky-nav ul li {
  margin-bottom: 15px;
}

.sticky-nav ul li a {
  display: block;
  padding: 5px 0;
  transition: var(--transition-normal);
}

.sticky-nav ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.policy-text {
  flex: 1;
}

.policy-section {
  margin-bottom: 60px;
}

.policy-box {
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  margin-bottom: 30px;
}

.decorated-list li {
  margin-bottom: 25px;
}

.decorated-list li h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.usage-item h3 {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.shield-list {
  padding-left: 25px;
  margin: 20px 0;
}

.shield-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.shield-list li::before {
  content: "🛡️";
  position: absolute;
  left: -25px;
}

.rights-accordion {
  margin-top: 30px;
}

.rights-item {
  margin-bottom: 15px;
  border: 1px solid var(--light-grey-color);
  border-radius: 8px;
  overflow: hidden;
}

.rights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f4f8fb;
  cursor: pointer;
}

.rights-header h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.rights-icon {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.rights-content {
  padding: 20px;
  border-top: 1px solid var(--light-grey-color);
  display: none;
}

.rights-item:target .rights-content {
  display: block;
}

.contact-box {
  text-align: center;
}

.contact-email {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 20px 0;
}

.cookie-explanation {
  text-align: center;
}

.cookie-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.diagram-step {
  text-align: center;
  width: 120px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 10px;
}

.diagram-arrow {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.cookie-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.cookie-type {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #f4f8fb;
}

.type-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
}

.type-icon.essential {
  background-color: rgba(26, 82, 118, 0.2);
}

.type-icon.functional {
  background-color: rgba(46, 139, 87, 0.2);
}

.type-icon.analytics {
  background-color: rgba(139, 35, 57, 0.2);
}

.type-icon.advertising {
  background-color: rgba(255, 140, 0, 0.2);
}

.usage-table {
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.table-header, .table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
}

.table-header {
  background-color: var(--secondary-color);
  color: white;
  font-weight: bold;
}

.table-row:nth-child(even) {
  background-color: #f4f8fb;
}

.table-row:nth-child(odd) {
  background-color: white;
}

.cell {
  padding: 15px;
  border-right: 1px solid var(--light-grey-color);
  border-bottom: 1px solid var(--light-grey-color);
}

.browser-controls {
  margin-top: 30px;
}

.browser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.browser-item {
  background-color: #f4f8fb;
  padding: 20px;
  border-radius: 10px;
}

.browser-item h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.browser-item ol {
  padding-left: 20px;
}

.browser-item ol li {
  margin-bottom: 8px;
}

.intro-box {
  text-align: center;
}

.greeting-block {
  margin-bottom: 30px;
}

.terms-highlight {
  background-color: rgba(139, 35, 57, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.definition-list {
  text-align: left;
  margin-top: 20px;
}

.definition-list li {
  margin-bottom: 10px;
}

.rules-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.rules-column {
  border-radius: 10px;
  padding: 25px;
}

.rules-column.allowed {
  background-color: rgba(46, 139, 87, 0.05);
}

.rules-column.prohibited {
  background-color: rgba(139, 35, 57, 0.05);
}

.check-list li, .cross-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.cross-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.health-notice {
  background-color: #f4f8fb;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.registration-steps {
  margin: 30px 0;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 10px;
}

.data-notice {
  background-color: rgba(26, 82, 118, 0.05);
  padding: 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 20px;
}

.responsibilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.responsibility-card {
  background-color: #f4f8fb;
  padding: 25px;
  border-radius: 10px;
}

.responsibility-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.responsibility-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.5rem;
}

.community-rules {
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(46, 139, 87, 0.05);
}

.limitations-box {
  padding-bottom: 50px;
}

.limitation-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.limitation-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(139, 35, 57, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.limitation-text h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.disclaimer-notice {
  background-color: rgba(139, 35, 57, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  font-style: italic;
}

.changes-info {
  margin-bottom: 30px;
}

.version-history {
  background-color: #f4f8fb;
  padding: 20px;
  border-radius: 10px;
}

.version-item {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-grey-color);
}

.version-date {
  font-weight: bold;
  min-width: 100px;
}

.dispute-steps {
  margin: 30px 0;
}

.dispute-step {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--light-grey-color);
}

.dispute-step:last-child {
  border-bottom: none;
}

.dispute-step h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.final-note {
  background-color: #f4f8fb;
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
  font-style: italic;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .programs-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-wrapper,
  .contact-wrapper {
    flex-direction: column;
  }
  
  .about-image,
  .contact-info,
  .contact-form {
    width: 100%;
  }
  
  .footer-wrapper {
    gap: 30px;
  }
  
  .policy-wrapper {
    flex-direction: column;
  }
  
  .policy-nav {
    width: 100%;
  }
  
  .sticky-nav {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content,
  .hero-image {
    max-width: 100%;
  }
  
  .programs-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    padding: 50px 30px;
    transition: var(--transition-normal);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .table-header, .table-row {
    grid-template-columns: 1fr;
  }
  
  .cell {
    border-right: none;
  }
}

@media(max-width: 480px) {
    h1 {
      font-size: 1.75rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    .section-title {
      font-size: 1.5rem;
    }
    
    .section-description {
      font-size: 0.9rem;
    }
    
    .hero {
      padding: 50px 0;
    }
    
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
      padding: 10px 20px;
      font-size: 0.8rem;
    }
    
    .testimonial-card {
      min-width: 100%;
    }
    
    .testimonial-author {
      flex-direction: column;
      text-align: center;
    }
    
    .cookie-diagram {
      flex-direction: column;
    }
    
    .diagram-arrow {
      transform: rotate(90deg);
    }
    
    .step {
      flex-direction: column;
      text-align: center;
    }
    
    .step-icon {
      margin: 0 auto 15px;
    }
    
    .limitation-item {
      flex-direction: column;
      text-align: center;
    }
    
    .limitation-icon {
      margin: 0 auto 15px;
    }
    
    .thankyou-content {
      padding: 30px;
    }
    
    .policy-box {
      padding: 25px;
    }
  }
  
  @keyframes checkmark {
    0% {
      width: 0;
      height: 0;
      opacity: 0;
    }
    100% {
      width: 50px;
      height: 25px;
      opacity: 1;
    }
  }
  
  .checkmark {
    animation: checkmark 0.8s ease-in-out forwards;
  }
  
  ::placeholder {
    color: #bbb;
    opacity: 1;
  }
  
  ::selection {
    background: var(--primary-color);
    color: white;
  }
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #6b1a2a;
  }
  
  a:focus,
  button:focus,
  input:focus,
  select:focus,
  textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
  }
  
  .skip-to-content {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    z-index: 9999;
  }
  
  .skip-to-content:focus {
    left: 0;
  }