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

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

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #333333;
}

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

ul {
  list-style: none;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
  border-color: #000000;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.main-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

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

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

.header-cta {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 101;
}

.mobile-menu-toggle:hover {
  background: #333333;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 200;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 48px;
  height: 48px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #333333;
}

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

.mobile-nav a {
  font-weight: 600;
  color: #000000;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  color: #666666;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #000000;
}

.hero-subtitle {
  font-size: 18px;
  color: #333333;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #666666;
  font-size: 14px;
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Internal */
.hero-internal {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 60px 0;
  text-align: center;
}

.hero-internal h1 {
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: #666666;
}

/* Sections */
section {
  padding: 60px 0;
  margin-bottom: 40px;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

/* Benefits Grid */
.benefits {
  background: #ffffff;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: #f9f9f9;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  margin-bottom: 16px;
  color: #000000;
}

.benefit-card p {
  color: #666666;
  line-height: 1.7;
}

/* Services Grid */
.services-preview {
  background: #fafafa;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #000000;
  font-size: 20px;
}

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

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-top: 16px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Process Steps */
.process {
  background: #ffffff;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step h3 {
  margin-bottom: 12px;
  color: #000000;
}

.step p {
  color: #666666;
  font-size: 14px;
}

/* Testimonials */
.testimonials {
  background: #fafafa;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  font-style: italic;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}

.client-info strong {
  color: #000000;
  font-size: 16px;
}

.client-info span {
  color: #666666;
  font-size: 14px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #cccccc;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: #ffffff;
  color: #000000;
}

.cta-banner .btn-primary:hover {
  background: #f0f0f0;
}

/* About Story */
.about-story {
  background: #ffffff;
}

.about-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

.mission-statement {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  background: #f9f9f9;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #000000;
  margin-top: 32px;
}

/* Values */
.values {
  background: #fafafa;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
}

.value-card h3 {
  color: #000000;
  margin-bottom: 12px;
}

.value-card p {
  color: #666666;
}

/* Stats */
.stats {
  background: #ffffff;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.stat-card strong {
  display: block;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
}

.stat-card p {
  color: #666666;
  font-size: 14px;
}

/* Services Detailed */
.services-detailed {
  background: #ffffff;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.service-detail {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
}

.service-detail h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 16px;
  color: #000000;
}

.service-detail > p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 24px;
}

.service-benefits {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-benefits li {
  padding-left: 32px;
  position: relative;
  color: #333333;
  line-height: 1.6;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
  font-size: 18px;
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #e0e0e0;
}

.service-price .price {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
}

.service-price .duration {
  color: #666666;
  font-size: 14px;
}

/* Portfolio Grid */
.portfolio-grid {
  background: #fafafa;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.project-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.project-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-card h3 {
  color: #000000;
  font-size: 18px;
}

.project-card p {
  color: #666666;
  font-size: 14px;
  flex-grow: 1;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.project-meta span {
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #333333;
}

/* Inspiration Categories */
.inspiration-categories {
  background: #ffffff;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.category-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #f9f9f9;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.category-card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.category-card p {
  color: #666666;
  font-size: 14px;
}

/* Tips & Styles */
.inspiration-tips,
.inspiration-styles {
  background: #fafafa;
}

.tips-grid,
.styles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.tip-card,
.style-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
}

.tip-card h3,
.style-card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.tip-card p,
.style-card p {
  color: #666666;
}

/* Blog */
.blog-featured {
  background: #ffffff;
}

.featured-article {
  background: #f9f9f9;
  padding: 48px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  margin-top: 40px;
}

.featured-article h2 {
  text-align: left;
  font-size: 32px;
  margin-bottom: 16px;
}

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

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #999999;
  font-size: 14px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Blog Grid */
.blog-grid {
  background: #fafafa;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.article-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.article-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-card h3 {
  color: #000000;
  font-size: 18px;
}

.article-card p {
  color: #666666;
  font-size: 14px;
  flex-grow: 1;
}

/* Contact */
.contact-info {
  background: #ffffff;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.info-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #f9f9f9;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  text-align: center;
}

.info-card h3 {
  margin-bottom: 16px;
  color: #000000;
}

.info-card p {
  color: #666666;
  margin-bottom: 8px;
}

.contact-methods {
  background: #fafafa;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
}

.method-card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.method-card p {
  color: #666666;
}

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

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #000000;
}

.content-wrapper p,
.content-wrapper ul {
  color: #333333;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper ul {
  padding-left: 24px;
}

.content-wrapper li {
  list-style: disc;
  margin-bottom: 8px;
}

/* Thank You Page */
.hero-thankyou {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 100px 0;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.thankyou-content h1 {
  margin-bottom: 16px;
}

.thankyou-content .subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 24px;
}

.thankyou-content p {
  color: #333333;
  margin-bottom: 32px;
}

.next-steps {
  background: #ffffff;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: #f9f9f9;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  text-align: center;
}

.step-card .step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.step-card p {
  color: #666666;
  font-size: 14px;
}

.useful-links {
  background: #fafafa;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.link-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card h3 {
  color: #000000;
}

.link-card p {
  color: #666666;
  flex-grow: 1;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 24px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

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

.footer-column p,
.footer-column li {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-column a {
  color: #cccccc;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.legal-links a {
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffffff;
}

.copyright {
  color: #999999;
  font-size: 14px;
  text-align: center;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 150;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 auto;
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-btn-accept {
  background: #ffffff;
  color: #000000;
}

.cookie-btn-accept:hover {
  background: #f0f0f0;
}

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

.cookie-btn-reject:hover {
  border-color: #ffffff;
}

.cookie-btn-settings {
  background: transparent;
  color: #cccccc;
  border: none;
  text-decoration: underline;
}

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

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

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

.cookie-modal-content {
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
}

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

.cookie-modal-header h2 {
  color: #000000;
  font-size: 24px;
}

.cookie-modal-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666666;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #000000;
}

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

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

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

.cookie-category h3 {
  color: #000000;
  font-size: 18px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #cccccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #000000;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-modal-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .header-cta {
    display: block;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }

  .hero {
    padding: 60px 0;
  }

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

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

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .trust-indicators {
    flex-direction: column;
  }

  section {
    padding: 40px 0;
  }

  .benefit-card,
  .service-card,
  .value-card,
  .stat-card,
  .project-card,
  .category-card,
  .tip-card,
  .style-card,
  .article-card,
  .info-card,
  .method-card,
  .link-card,
  .step-card {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .step {
    flex: 1 1 100%;
  }

  .featured-article {
    padding: 32px 24px;
  }

  .service-detail {
    padding: 24px;
  }

  .service-price {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-columns {
    flex-direction: column;
  }

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

  .legal-links {
    flex-direction: column;
    align-items: center;
  }

  .cookie-content {
    flex-direction: column;
  }

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

  .cookie-btn {
    width: 100%;
  }

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

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 16px; }

  .container {
    padding: 0 16px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }

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

  .stat-number {
    font-size: 36px;
  }

  .service-price .price {
    font-size: 24px;
  }

  .featured-article h2 {
    font-size: 24px;
  }
}

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

.benefit-card,
.service-card,
.value-card,
.project-card,
.article-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

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

  body {
    color: #000000;
  }

  a {
    text-decoration: underline;
  }
}