
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary: #1D3557;
  --secondary: #457B9D;
  --accent: #E63946;
  --bg-light: #F1FAEE;
  --bg-dark: #0A1128;
  --text-primary: #1D3557;
  --text-secondary: #6B7280;
  --border-color: #D1D5DB;
}


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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Crimson Text', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover, a:focus {
  color: var(--primary);
  text-decoration: underline;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 0;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: transparent;
  color: var(--accent);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: transparent;
  color: var(--secondary);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--primary);
  color: white;
  text-decoration: none;
}


header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav-desktop {
  display: flex;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
}

.nav-desktop li {
  margin-left: 1.5rem;
}

.nav-desktop a {
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after, .nav-desktop a:focus::after, .nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover, .nav-desktop a:focus, .nav-desktop a.active {
  text-decoration: none;
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-info a {
  margin-left: 1rem;
  color: var(--primary);
}

.contact-info i {
  margin-right: 0.5rem;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  margin-left: 20px;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: white;
  z-index: 999;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 1.5rem;
}

.mobile-nav a {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
}


footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-info h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
}

.footer-links h3 {
  color: white;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: #ddd;
}

.footer-links a:hover, .footer-links a:focus {
  color: white;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}


.horizontal-scroll-wrapper {
  width: 100%;
  height: 100vh;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  padding-top: 70px; 
}

.scroll-section {
  min-width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.hero {
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 40, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.competencies {
  background-color: white;
}

.competencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: 2rem;
}

.competency-card {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent);
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.competency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.competency-card h3 {
  margin-bottom: 1rem;
}

.competency-card .stats {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--secondary);
}


.services {
  background-color: var(--bg-light);
}

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

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card .btn {
  margin-top: 1rem;
}


.process {
  background-color: white;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  width: 22%;
  text-align: center;
  padding-top: 50px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent);
  z-index: 1;
}

.timeline-item h3 {
  margin-bottom: 0.5rem;
}


.advantages {
  background-color: var(--bg-light);
}

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

.advantage-card {
  text-align: center;
  padding: 2rem;
}

.advantage-card i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.advantage-card h3 {
  margin-bottom: 1rem;
}


.faq {
  background-color: white;
}

.accordion {
  margin: 2rem 0;
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  padding: 1rem;
  background-color: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.accordion-content {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 1rem;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}


.contact-form-section {
  background-color: var(--bg-light);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

.form-check-label {
  font-size: 0.9rem;
}

.btn-submit {
  width: 100%;
}


.qualifications-header {
  background-image: url('../images/qualification-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 6rem 0 3rem;
  margin-top: 70px;
}

.qualifications-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 40, 0.7);
}

.qualifications-content {
  position: relative;
  z-index: 1;
}

.qualifications-section {
  padding: 4rem 0;
}

.qualifications-section:nth-child(odd) {
  background-color: white;
}

.qualifications-section:nth-child(even) {
  background-color: var(--bg-light);
}

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

.skill-card {
  padding: 2rem;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.industries-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.industry-item {
  padding: 1.5rem;
  background-color: white;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.certificates-list {
  list-style: none;
}

.certificate-item {
  display: flex;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.certificate-year {
  min-width: 100px;
  font-weight: 700;
  color: var(--secondary);
}

.certificate-info h4 {
  margin-bottom: 0.5rem;
}

.case-preview {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}


.packages-header {
  background-image: url('../images/packages-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 6rem 0 3rem;
  margin-top: 70px;
}

.packages-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 40, 0.7);
}

.packages-content {
  position: relative;
  z-index: 1;
}

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

.package-card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-header {
  padding: 2rem;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.package-header h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 1.2rem;
  font-weight: 700;
}

.package-features {
  padding: 2rem;
}

.package-features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.package-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.package-card .btn {
  width: 100%;
}

.comparison-table {
  width: 100%;
  margin: 3rem 0;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 1rem;
  border: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary);
  color: white;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--bg-light);
}

.comparison-table .check {
  color: var(--secondary);
  text-align: center;
}

.terms-section {
  background-color: var(--bg-light);
  padding: 4rem 0;
}


.cases-header {
  background-color: var(--primary);
  color: white;
  padding: 6rem 0 3rem;
  margin-top: 70px;
}

.cases-header h1 {
  color: white;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.case-card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-10px);
}

.case-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.case-content {
  padding: 2rem;
}

.case-content h3 {
  margin-bottom: 1rem;
}

.case-content p {
  margin-bottom: 1.5rem;
}


.case-header {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 6rem 0 3rem;
  margin-top: 70px;
}

.case-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 40, 0.7);
}

.case-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.case-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.case-section {
  margin-bottom: 3rem;
}

.case-section h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}


.contact-header {
  background-image: url('../images/contact-office.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 6rem 0 3rem;
  margin-top: 70px;
}

.contact-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 40, 0.7);
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-info-section {
  padding: 4rem 0;
  background-color: white;
}

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

.contact-card {
  padding: 2rem;
  text-align: center;
  background-color: var(--bg-light);
  border-radius: 4px;
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.map-section {
  background-color: var(--bg-light);
  padding: 4rem 0;
}

.map-container {
  height: 400px;
  background-color: #eee;
}


.thanks-section {
  padding: 8rem 0;
  text-align: center;
  margin-top: 70px;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.thanks-content {
  max-width: 600px;
  margin: 0 auto;
}

.thanks-actions {
  margin-top: 2rem;
}

.thanks-actions .btn {
  margin: 0 0.5rem;
}


.legal-header {
  background-color: var(--primary);
  color: white;
  padding: 6rem 0 3rem;
  margin-top: 70px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-section ul, .legal-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-update {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-style: italic;
  color: var(--text-secondary);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  display: none;
}

.cookie-settings-content {
  background-color: white;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 2rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-header h3 {
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
  background-color: var(--secondary);
}

input:focus + .cookie-toggle-slider {
  box-shadow: 0 0 1px var(--secondary);
}

input:checked + .cookie-toggle-slider:before {
  transform: translateX(26px);
}

.cookie-settings-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 999;
}

.cookie-settings-btn i {
  font-size: 1.5rem;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  max-width: 500px;
  width: 90%;
  border-radius: 4px;
  padding: 2rem;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  margin-bottom: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.modal-body {
  margin-bottom: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.iti {
  width: 100%;
}


@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .contact-info {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .horizontal-scroll-wrapper {
    flex-direction: column;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .scroll-section {
    min-width: auto;
    height: auto;
    min-height: 100vh;
    scroll-snap-align: none;
  }
  
  .timeline {
    flex-direction: column;
  }
  
  .timeline::before {
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
  }
  
  .timeline-item {
    width: 100%;
    text-align: left;
    padding-left: 50px;
    padding-top: 0;
    margin-bottom: 2rem;
  }
  
  .timeline-item::before {
    left: 20px;
    top: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}