/* ===================================
   TechPuls München - Professional Corporate CSS
   Design Style: Professional Corporate
   =================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2D3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #003D7A;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #2D3E50;
  line-height: 1.7;
}

a {
  color: #0066CC;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #D94500;
}

ul {
  list-style: none;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #0066CC;
  color: #ffffff;
  border-color: #0066CC;
}

.btn-primary:hover {
  background-color: #003D7A;
  border-color: #003D7A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #0066CC;
  border-color: #0066CC;
}

.btn-secondary:hover {
  background-color: #0066CC;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.btn-link {
  color: #0066CC;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover {
  color: #D94500;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #D94500;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.premium-badge {
  background-color: #003D7A;
}

.industry-badge {
  background-color: #0066CC;
  padding: 4px 10px;
  font-size: 11px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #003D7A;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #2D3E50;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #D94500;
}

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

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  color: #2D3E50;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #F8F9FA;
  color: #0066CC;
  transform: translateX(4px);
}

/* Header */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #2D3E50;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0066CC;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #0066CC;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 16px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #003D7A 0%, #0066CC 100%);
  color: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
  background-size: 60px 60px;
  opacity: 0.5;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  background-color: #D94500;
  border-color: #D94500;
}

.hero-cta .btn-primary:hover {
  background-color: #ffffff;
  color: #003D7A;
  border-color: #ffffff;
}

.hero-cta .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero-cta .btn-secondary:hover {
  background-color: #ffffff;
  color: #003D7A;
}

/* Newsletter Hero Variation */
.newsletter-hero {
  background: linear-gradient(135deg, #003D7A 0%, #0066CC 50%, #D94500 100%);
}

.newsletter-hero .pricing {
  font-size: 32px;
  font-weight: 700;
  margin: 24px 0;
  color: #ffffff;
}

/* Page Hero (smaller) */
.page-hero {
  background: linear-gradient(135deg, #003D7A 0%, #0066CC 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero.legal {
  padding: 40px 20px;
}

/* Sections */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #2D3E50;
  max-width: 700px;
  margin: 0 auto 48px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 38px;
}

/* Services Section */
.services {
  background-color: #ffffff;
  padding: 80px 20px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E5E9ED;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: #0066CC;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
  transform: translateY(-4px);
}

.service-card h3 {
  color: #003D7A;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #2D3E50;
  flex-grow: 1;
}

/* Value Proposition */
.value-proposition {
  background: linear-gradient(135deg, #F8F9FA 0%, #E5E9ED 100%);
  padding: 80px 20px;
}

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

.benefit-item {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-item h3 {
  color: #0066CC;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-item p {
  color: #2D3E50;
  font-size: 15px;
}

/* Testimonials */
.testimonials {
  background-color: #ffffff;
  padding: 80px 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #0066CC;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #2D3E50;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: #003D7A;
  font-style: normal;
  margin-top: 8px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #003D7A;
  font-style: normal;
  margin-top: 8px;
}

.expert-name {
  font-weight: 700;
  color: #003D7A;
  font-style: normal;
  margin-top: 8px;
}

/* Rating Stars */
.rating {
  color: #D94500;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

/* CTA Banner */
.cta-banner,
.cta-consultation,
.newsletter-inline,
.newsletter-cta,
.submit-cta,
.guarantee,
.cta-home,
.cta-return {
  background: linear-gradient(135deg, #003D7A 0%, #0066CC 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.cta-banner h2,
.cta-consultation h2,
.newsletter-inline h3,
.newsletter-cta h2,
.submit-cta h2,
.guarantee h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-consultation p,
.newsletter-inline p,
.newsletter-cta p,
.submit-cta p,
.guarantee p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-banner .btn,
.cta-consultation .btn,
.newsletter-inline .btn,
.newsletter-cta .btn,
.submit-cta .btn,
.guarantee .btn,
.cta-home .btn,
.cta-return .btn {
  background-color: #D94500;
  border-color: #D94500;
  color: #ffffff;
}

.cta-banner .btn:hover,
.cta-consultation .btn:hover,
.newsletter-inline .btn:hover,
.newsletter-cta .btn:hover,
.submit-cta .btn:hover,
.guarantee .btn:hover,
.cta-home .btn:hover,
.cta-return .btn:hover {
  background-color: #ffffff;
  color: #003D7A;
  border-color: #ffffff;
}

/* Filter Section */
.filter-section {
  background-color: #ffffff;
  padding: 40px 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  background-color: #F8F9FA;
  color: #2D3E50;
  border: 2px solid #E5E9ED;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #0066CC;
  color: #ffffff;
  border-color: #0066CC;
}

/* Topic Tabs */
.topics {
  background-color: #F8F9FA;
  padding: 40px 20px;
}

.topic-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.topic-tab {
  padding: 12px 28px;
  background-color: #ffffff;
  color: #2D3E50;
  border: 2px solid #E5E9ED;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.topic-tab:hover {
  background-color: #0066CC;
  color: #ffffff;
  border-color: #0066CC;
}

/* Reviews Section */
.reviews,
.featured-software,
.featured-article,
.featured-review,
.featured-startup {
  padding: 60px 20px;
  background-color: #ffffff;
}

.featured-review,
.featured-software,
.featured-article,
.featured-startup {
  background: linear-gradient(135deg, #F8F9FA 0%, #E5E9ED 100%);
  padding: 48px;
  border-radius: 8px;
  margin-bottom: 40px;
  border-left: 6px solid #0066CC;
}

.featured-review h2,
.featured-software h2,
.featured-article h2,
.featured-startup h2 {
  color: #003D7A;
  margin-top: 12px;
  text-align: left;
}

.featured-review p,
.featured-software p,
.featured-article p,
.featured-startup p {
  color: #2D3E50;
  font-size: 17px;
  margin: 16px 0;
}

.founding-info,
.price {
  display: inline-block;
  color: #0066CC;
  font-weight: 700;
  margin: 12px 0;
}

.location {
  color: #0066CC;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Review Grid */
.review-grid,
.review-items,
.tool-grid,
.startup-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 32px;
}

.review-card,
.tool-card,
.startup-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  border: 2px solid #E5E9ED;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card:hover,
.tool-card:hover,
.startup-card:hover {
  border-color: #0066CC;
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
  transform: translateY(-4px);
}

.review-card h3,
.tool-card h3,
.startup-card h3 {
  color: #003D7A;
  font-size: 20px;
  margin-bottom: 8px;
}

.review-card p,
.tool-card p,
.startup-card p {
  color: #2D3E50;
  font-size: 15px;
}

/* Categories */
.categories {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.category-grid,
.option-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card,
.option-card,
.info-card {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  border: 2px solid #E5E9ED;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover,
.option-card:hover {
  border-color: #0066CC;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.15);
  transform: translateY(-4px);
}

.category-card h3,
.option-card h3,
.info-card h3 {
  color: #003D7A;
  font-size: 19px;
  margin-bottom: 12px;
}

/* Pricing Section */
.pricing-section,
.benefits {
  padding: 80px 20px;
  background-color: #F8F9FA;
}

.pricing-grid,
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pricing-card,
.benefit-card {
  flex: 1 1 300px;
  max-width: 400px;
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 8px;
  border: 2px solid #E5E9ED;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card:hover,
.benefit-card:hover {
  border-color: #0066CC;
  box-shadow: 0 8px 28px rgba(0, 102, 204, 0.15);
  transform: translateY(-6px);
}

.pricing-card.recommended {
  border-color: #0066CC;
  border-width: 3px;
  position: relative;
  box-shadow: 0 8px 28px rgba(0, 102, 204, 0.2);
}

.pricing-card h3 {
  color: #003D7A;
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 700;
  color: #0066CC;
  margin: 16px 0;
}

.pricing-card .billing {
  color: #2D3E50;
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
  flex-grow: 1;
}

.pricing-card li {
  padding: 10px 0;
  color: #2D3E50;
  border-bottom: 1px solid #E5E9ED;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card li::before {
  content: '✓';
  color: #0066CC;
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQ Section */
.faq,
.faq-contact {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.faq-item {
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
  border-left: 4px solid #0066CC;
}

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

.faq-item p {
  color: #2D3E50;
  line-height: 1.7;
}

/* Buying Guide */
.buying-guide {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.criteria-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.criteria-list li {
  padding: 16px 20px;
  background-color: #ffffff;
  border-radius: 4px;
  border-left: 4px solid #0066CC;
  color: #2D3E50;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.criteria-list li::before {
  content: '✓';
  color: #0066CC;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* AI Tools & Success Stories */
.ai-tools,
.success-stories,
.expert-insights {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.insight-grid,
.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.insight-card,
.story-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #D94500;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.insight-card p,
.story-card p {
  color: #2D3E50;
  font-size: 16px;
  line-height: 1.7;
}

.story-card h3 {
  color: #003D7A;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Contact Options */
.contact-options,
.contact-info,
.consultation-info {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.consultation-info {
  background-color: #ffffff;
  text-align: center;
}

.consultation-info .pricing {
  font-size: 28px;
  font-weight: 700;
  color: #0066CC;
  margin: 20px 0;
}

/* Rights Overview */
.rights-overview {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

.right-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  border-top: 4px solid #0066CC;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.right-card h3 {
  color: #003D7A;
  font-size: 18px;
  margin-bottom: 12px;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  background-color: #ffffff;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  color: #003D7A;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-content h3 {
  color: #0066CC;
  font-size: 22px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #2D3E50;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content a {
  color: #0066CC;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #D94500;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #003D7A 0%, #0066CC 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: #ffffff;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.confirmation-message {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Next Steps */
.next-steps,
.suggested-content,
.suggested-links {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.steps-grid,
.content-grid,
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.step-card,
.content-card,
.link-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step-card:hover,
.content-card:hover,
.link-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.step-card h3,
.content-card h3,
.link-card h3 {
  color: #003D7A;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Footer */
.site-footer {
  background-color: #2D3E50;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 200px;
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 12px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #0066CC;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2D3E50;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-consent-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.cookie-consent-buttons .btn-primary {
  background-color: #0066CC;
  border-color: #0066CC;
}

.cookie-consent-buttons .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

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

.cookie-settings-modal.active {
  display: flex;
}

.cookie-settings-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-settings-content h2 {
  color: #003D7A;
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E9ED;
}

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

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

.cookie-category p {
  color: #2D3E50;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E5E9ED;
  transition: 0.3s;
  border-radius: 24px;
}

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

input:checked + .cookie-slider {
  background-color: #0066CC;
}

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

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

.cookie-settings-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-text {
    font-size: 16px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Hero CTA buttons stack */
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Section padding adjustments */
  .section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Grid adjustments */
  .service-grid,
  .benefits-grid,
  .testimonial-grid,
  .review-grid,
  .category-grid,
  .pricing-grid,
  .option-grid,
  .rights-grid,
  .steps-grid,
  .content-grid {
    gap: 20px;
  }
  
  /* Cards full width on mobile */
  .service-card,
  .benefit-item,
  .testimonial-card,
  .review-card,
  .category-card,
  .pricing-card,
  .option-card,
  .right-card,
  .step-card,
  .content-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer columns stack */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  /* Cookie consent stacks */
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    width: 100%;
  }
  
  .cookie-consent-buttons .btn {
    flex: 1;
  }
  
  /* Modal padding */
  .cookie-settings-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .pricing-card .price {
    font-size: 36px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-settings-modal,
  .hero-cta,
  .cta-banner,
  .btn {
    display: none !important;
  }
  
  body {
    background-color: #ffffff;
  }
  
  .hero {
    background: #003D7A;
    color: #000000;
  }
}