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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #fef5e7;
  overflow-x: hidden;
}

/* Warm Friendly Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a365d;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

a {
  color: #ed8936;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #c05621;
  text-decoration: underline;
}

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

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

/* Header */
header {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

header img {
  height: 50px;
  width: auto;
}

header nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

header nav a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

header nav a:hover {
  background-color: rgba(237, 137, 54, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #ed8936;
  color: #fff;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(237, 137, 54, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #c05621;
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a365d 0%, #2c5282 100%);
  z-index: 1002;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: #ed8936;
  border-color: #ed8936;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
  background-color: #ed8936;
  transform: translateX(8px);
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ff9a56 0%, #ed8936 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.3);
  margin-bottom: 60px;
}

.hero h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: #1a365d;
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
  background-color: #2c5282;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(26, 54, 93, 0.4);
  text-decoration: none;
}

.btn-secondary {
  background-color: #fff;
  color: #1a365d;
  border: 2px solid #1a365d;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: #1a365d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(26, 54, 93, 0.4);
  text-decoration: none;
}

/* Trust Badges */
.trust-badges,
.trust-elements {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.trust-badges span,
.trust-elements span {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  white-space: nowrap;
}

/* Stats */
.stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stats span {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  white-space: nowrap;
}

/* Features Section */
.features {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1a365d;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.2);
}

.feature h3 {
  color: #ed8936;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
}

/* Services Overview */
.services-overview {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 60px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card {
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.3);
  border-color: #ed8936;
}

.service-card h3 {
  color: #1a365d;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  display: block;
  color: #ed8936;
  font-weight: 700;
  font-size: 20px;
  margin-top: 16px;
}

.service-card ul {
  list-style: none;
  margin: 16px 0 0 0;
  padding: 0;
}

.service-card ul li {
  color: #4a5568;
  font-size: 14px;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.service-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ed8936;
  font-weight: 700;
}

.services-overview .btn-primary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* Services List Page */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 100%);
  margin-bottom: 60px;
  border-radius: 40px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.testimonial-card {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.2);
}

.testimonial-card p {
  color: #2d3748;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonial-card strong {
  color: #1a365d;
  font-weight: 700;
  font-size: 14px;
}

.testimonials .rating {
  text-align: center;
  color: #1a365d;
  font-weight: 700;
  font-size: 18px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  margin-bottom: 60px;
  box-shadow: 0 8px 24px rgba(26, 54, 93, 0.3);
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 32px;
}

.cta-banner p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Story Section */
.story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.story h2 {
  text-align: center;
  margin-bottom: 48px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.text-section h3 {
  color: #ed8936;
  margin-top: 32px;
  margin-bottom: 16px;
}

.values {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.values h3 {
  color: #1a365d;
  margin-bottom: 16px;
}

.values ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.values ul li {
  color: #4a5568;
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}

.values ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ed8936;
  font-weight: 700;
  font-size: 20px;
}

/* Expertise Section */
.expertise {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 60px;
  border-radius: 40px;
}

.expertise h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Achievements Section */
.achievements {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 100%);
  margin-bottom: 60px;
  border-radius: 40px;
}

.achievements h2 {
  text-align: center;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.2);
}

.stat strong {
  display: block;
  color: #ed8936;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat p {
  color: #4a5568;
  font-size: 14px;
  margin: 0;
}

/* Solutions Categories */
.solutions-categories {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.solutions-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.solution-card {
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  border: 2px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.3);
  border-color: #ed8936;
}

.solution-card h3 {
  color: #1a365d;
  font-size: 20px;
  margin-bottom: 8px;
}

.solution-card p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
}

.solution-card .price {
  display: block;
  color: #ed8936;
  font-weight: 700;
  font-size: 20px;
  margin-top: 16px;
}

/* Integration Section */
.integration {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 60px;
  border-radius: 40px;
}

.integration h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Case Studies */
.case-studies {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 48px;
}

.case-study-card {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border-left: 4px solid #ed8936;
}

.case-study-card h3 {
  color: #1a365d;
  font-size: 24px;
  margin-bottom: 16px;
}

.case-study-card p {
  color: #4a5568;
  margin-bottom: 12px;
  line-height: 1.6;
}

.case-study-card blockquote {
  background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 100%);
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid #ed8936;
  margin-top: 24px;
  font-style: italic;
  color: #2d3748;
}

/* Statistics Section */
.statistics {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 100%);
  margin-bottom: 60px;
  border-radius: 40px;
}

.statistics h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Warranty Section */
.warranty {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 60px;
  border-radius: 40px;
}

.warranty h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Blog Featured */
.blog-featured {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.featured-post {
  background: linear-gradient(135deg, #ed8936 0%, #ff9a56 100%);
  padding: 48px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.3);
  text-align: center;
}

.featured-post h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 32px;
}

.featured-post p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
}

.featured-post .meta {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

/* Blog Grid */
.blog-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.blog-grid h2 {
  text-align: center;
  margin-bottom: 48px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.article-card {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.2);
}

.article-card h3 {
  color: #1a365d;
  font-size: 20px;
  margin-bottom: 12px;
}

.article-card p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.article-card .meta {
  color: #718096;
  font-size: 13px;
  margin-top: 12px;
}

/* Contact Info */
.contact-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.2);
}

.contact-card h3 {
  color: #ed8936;
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-card p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 60px;
  border-radius: 40px;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.method-card {
  background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 100%);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.method-card h3 {
  color: #1a365d;
  font-size: 24px;
}

.method-card p {
  color: #4a5568;
  font-size: 16px;
}

/* FAQ Contact */
.faq-contact {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq-contact h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ed8936;
}

.faq-item h3 {
  color: #1a365d;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content .text-section {
  background-color: #fff;
  padding: 48px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  color: #1a365d;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #ed8936;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-left: 32px;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: #4a5568;
}

/* Next Steps Section */
.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.step {
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.2);
}

.step strong {
  color: #ed8936;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

.step p {
  color: #4a5568;
  font-size: 14px;
  margin: 0;
}

.next-steps > .container > p {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1a365d;
  margin-top: 32px;
}

/* Resources Section */
.resources {
  padding: 60px 20px;
  background-color: #fff;
  margin-bottom: 60px;
  border-radius: 40px;
}

.resources h2 {
  text-align: center;
  margin-bottom: 48px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.resource-card {
  background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 100%);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.resource-card h3 {
  color: #1a365d;
  font-size: 24px;
}

.resource-card p {
  color: #4a5568;
  font-size: 16px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  padding: 60px 20px 20px;
  color: #fff;
  border-radius: 40px 40px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: #ed8936;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-column a:hover {
  color: #ed8936;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-bottom nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.footer-bottom nav a:hover {
  color: #ed8936;
}

.footer-bottom p {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent p {
  color: #fff;
  font-size: 14px;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn.accept {
  background-color: #ed8936;
  color: #fff;
}

.cookie-btn.accept:hover {
  background-color: #c05621;
  transform: translateY(-2px);
}

.cookie-btn.reject {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

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

.cookie-btn.settings {
  background-color: transparent;
  color: #fff;
  text-decoration: underline;
  border: none;
  padding: 12px 16px;
}

.cookie-btn.settings:hover {
  color: #ed8936;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #1a365d;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #fff9f0;
  border-radius: 12px;
  border-left: 4px solid #ed8936;
}

.cookie-category h3 {
  color: #1a365d;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  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: #cbd5e0;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #ed8936;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: #a0aec0;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-buttons .save {
  background-color: #ed8936;
  color: #fff;
}

.cookie-modal-buttons .save:hover {
  background-color: #c05621;
}

.cookie-modal-buttons .cancel {
  background-color: #e2e8f0;
  color: #1a365d;
}

.cookie-modal-buttons .cancel:hover {
  background-color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  header nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

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

  .hero p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .features-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .solutions-grid,
  .contact-grid,
  .articles-grid,
  .steps-grid {
    flex-direction: column;
  }

  .feature,
  .service-card,
  .testimonial-card,
  .stat,
  .solution-card,
  .contact-card,
  .article-card,
  .step {
    flex: 1 1 100%;
    min-width: 100%;
  }

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

  .footer-column {
    flex: 1 1 100%;
  }

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

  .footer-bottom nav {
    flex-direction: column;
    align-items: center;
  }

  .cookie-consent .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 24px 20px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons button {
    width: 100%;
  }

  .methods-grid,
  .resources-grid {
    flex-direction: column;
  }

  .method-card,
  .resource-card {
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature,
  .service-card,
  .solution-card,
  .article-card {
    flex: 1 1 calc(50% - 12px);
  }

  .stat,
  .step {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.features,
.services-overview,
.testimonials,
.cta-banner {
  animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cta-banner,
  .cookie-consent,
  .cookie-modal,
  footer {
    display: none;
  }

  body {
    background-color: #fff;
  }

  .hero {
    background: none;
    color: #000;
  }

  .hero h1,
  .hero p {
    color: #000;
  }
}