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

:root {
  --color-primary: #2c5f2d;
  --color-secondary: #97bc62;
  --color-accent: #daa520;
  --color-dark: #1a1a2e;
  --color-light: #f8f9fa;
  --color-white: #ffffff;
  --color-gray: #6c757d;
  --color-gray-light: #e9ecef;
  --color-text: #333333;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --border-radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #1e4620;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

.btn-secondary:hover {
  background-color: #c99418;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Header & Navigation */
.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo svg {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

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

.nav-links a {
  padding: 12px 0;
  color: var(--color-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--color-gray-light);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a:last-child {
  border-bottom: none;
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--color-white);
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
}

.hero-decoration {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}

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

.section-alt {
  background-color: var(--color-light);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.section-header p {
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--color-gray);
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-item.reverse {
  flex-direction: column;
}

.feature-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.feature-content h3 {
  margin-bottom: 15px;
  color: var(--color-primary);
}

/* Statistics */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 30px;
  flex: 1 1 140px;
  max-width: 200px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-gray);
}

.section-dark .stat-label {
  color: rgba(255,255,255,0.8);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial {
  background-color: var(--color-white);
  padding: 35px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--color-secondary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
}

.testimonial-info strong {
  display: block;
  color: var(--color-dark);
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-dark);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 25px 20px;
  color: var(--color-gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Services */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--color-primary);
}

.service-card p {
  color: var(--color-gray);
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 8px;
  color: var(--color-dark);
}

.step-content p {
  color: var(--color-gray);
  margin: 0;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-details h4 {
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--color-gray);
  margin: 0;
}

/* Quote Block */
.quote-block {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 60px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  color: var(--color-white);
}

.quote-block blockquote {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}

.quote-block cite {
  font-style: normal;
  opacity: 0.9;
}

/* Comparison Table */
.comparison {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}

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

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background-color: var(--color-light);
}

/* Milestones */
.milestones {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  padding-left: 30px;
}

.milestones::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
}

.milestone {
  position: relative;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 5px;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.milestone-year {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 5px;
}

.milestone h4 {
  margin-bottom: 8px;
}

.milestone p {
  color: var(--color-gray);
  margin: 0;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.value-content h4 {
  margin-bottom: 10px;
  color: var(--color-primary);
}

.value-content p {
  color: var(--color-gray);
  margin: 0;
}

/* Industries */
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.industry-tag {
  padding: 12px 24px;
  background-color: var(--color-light);
  border-radius: 30px;
  font-weight: 500;
  color: var(--color-dark);
  transition: var(--transition);
}

.industry-tag:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--color-white);
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.cookie-text a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 0.9rem;
}

.cookie-btn-accept {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}

.cookie-btn-accept:hover {
  background-color: #7da552;
}

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

.cookie-btn-reject:hover {
  border-color: var(--color-white);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid var(--color-gray-light);
}

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

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
  padding: 5px;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: var(--color-dark);
}

.cookie-modal-body {
  padding: 25px;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-light);
}

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

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

.cookie-category-header h4 {
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.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: var(--color-gray-light);
  border-radius: 26px;
  transition: var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

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

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-category p {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--color-gray-light);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal-footer .cookie-btn {
  padding: 12px 24px;
}

.cookie-btn-save {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cookie-btn-save:hover {
  background-color: #1e4620;
}

/* Thank You Page */
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.thank-you-content svg {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.thank-you-content h1 {
  margin-bottom: 20px;
}

.thank-you-content p {
  color: var(--color-gray);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Legal Pages */
.legal-content {
  padding: 60px 0;
}

.legal-content h1 {
  margin-bottom: 30px;
}

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

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

.legal-content p {
  color: var(--color-gray);
  margin-bottom: 15px;
}

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

.legal-content li {
  color: var(--color-gray);
  margin-bottom: 8px;
  position: relative;
  list-style: disc;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-meta {
  background-color: var(--color-light);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

.legal-meta p {
  margin: 0;
  color: var(--color-gray);
  font-size: 0.9rem;
}

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  padding: 50px 30px;
  border-radius: var(--border-radius-lg);
  color: var(--color-white);
}

.highlight-panel h3 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.highlight-panel p {
  opacity: 0.95;
}

.highlight-panel ul {
  margin-top: 20px;
}

.highlight-panel li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.highlight-panel li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* Icon Grid */
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.icon-item {
  text-align: center;
  flex: 1 1 140px;
  max-width: 180px;
}

.icon-item svg {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
}

.icon-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.icon-item p {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin: 0;
}

/* Team Section */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.team-avatar svg {
  width: 50px;
  height: 50px;
}

.team-member h4 {
  margin-bottom: 5px;
}

.team-member .role {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-member p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin: 0;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.benefit-check {
  width: 28px;
  height: 28px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check svg {
  width: 16px;
  height: 16px;
}

.benefit-text h4 {
  margin-bottom: 5px;
}

.benefit-text p {
  color: var(--color-gray);
  margin: 0;
  font-size: 0.95rem;
}

/* Media Queries */
@media (min-width: 576px) {
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 15px);
  }

  .service-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 15px);
  }

  .team-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .team-member {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }

  .hero {
    padding: 120px 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    gap: 35px;
  }

  .nav-links a {
    padding: 0;
    border: none;
  }

  .menu-toggle {
    display: none;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .feature-item {
    flex-direction: row;
    align-items: center;
  }

  .feature-item.reverse {
    flex-direction: row-reverse;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-info {
    flex: 1;
  }

  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-item {
    flex: 1 1 calc(50% - 15px);
  }

  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial {
    flex: 1 1 calc(50% - 15px);
  }

  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-section {
    flex: 1 1 200px;
  }
}

@media (min-width: 992px) {
  .card {
    flex: 1 1 calc(33.333% - 20px);
  }

  .service-card {
    flex: 1 1 calc(33.333% - 20px);
  }

  .team-member {
    flex: 1 1 calc(33.333% - 20px);
  }

  .hero-content {
    max-width: 60%;
  }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 10001;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Focus Styles */
*:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
