/* Slvrleaf - Modern Professional Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

	html {
  scroll-behavior: smooth;
	}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
		font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 3.5rem;
		font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.btn-primary {
  background-color: #2563eb;
  color: white;
  border-color: #2563eb;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2563eb;
  border-color: #2563eb;
}

.btn-secondary:hover {
  background-color: #2563eb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-links {
		display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #60a5fa;
}

.header-cta {
  display: flex;
			align-items: center;
		}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #1a1a1a;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
			width: 100%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 1001;
  transition: right 0.3s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-content {
  padding: 2rem;
  height: 100%;
				display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
					align-items: center;
  margin-bottom: 2rem;
}

.mobile-logo {
  height: 30px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #1a1a1a;
}

.mobile-nav-links {
  list-style: none;
  flex: 1;
}

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

.mobile-nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1.2rem;
  font-weight: 500;
}

.mobile-menu-cta {
  margin-top: auto;
}

/* Hero Banner */
.hero-banner {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
				display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
					align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
				display: flex;
  gap: 1rem;
				flex-wrap: wrap;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-placeholder {
  background: transparent;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #e2e8f0;
}

.hero-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: #2563eb;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-icon i {
  font-size: 3rem;
  color: white;
}

.hero-placeholder h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.hero-placeholder p {
  color: #6b7280;
  font-size: 1.1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background-color: #6b7280;
  margin: 0.5rem auto 0;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: white;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  background: #f0f4ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 2rem;
  color: #2563eb;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.service-card:hover .service-icon i {
  color: white;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.service-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
					align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #1d4ed8;
}

.service-link .arrow {
  transition: transform 0.3s ease;
}

.service-link:hover .arrow {
  transform: translateX(4px);
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #6b7280;
  font-weight: 500;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #4a4a4a;
}

.about-features {
				display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
					align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background-color: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
					align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.feature-text p {
  color: #6b7280;
  margin: 0;
  font-size: 1rem;
}

.about-image img {
					width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-placeholder {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #e2e8f0;
  height: 100%;
				display: flex;
  flex-direction: column;
					justify-content: center;
				}

.about-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: #2563eb;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-icon i {
  font-size: 3rem;
  color: white;
}

.about-placeholder h3 {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.about-placeholder p {
  color: #6b7280;
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
					width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
				display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
					align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: #2563eb;
  color: white;
  border-radius: 12px;
  display: flex;
					align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.contact-details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.contact-details p {
  color: #6b7280;
  margin: 0;
}

.contact-details a {
  color: #2563eb;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #9ca3af;
  margin-bottom: 2rem;
}

.social-links {
			display: flex;
  gap: 1rem;
}

.social-link {
  color: #9ca3af;
		text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #2563eb;
}

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

.footer-column h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

.footer-column a {
  color: #9ca3af;
			text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
				text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .header-container {
    padding: 1rem 2rem;
  }
  
  .hero-content {
    gap: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle span {
    background-color: #ffffff;
  }
  
  .hero-banner {
    padding: 6rem 0 3rem;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 350px;
  }
  
  .hero-placeholder {
    padding: 2rem 1.5rem;
  }
  
  .hero-icon {
    width: 80px;
    height: 80px;
  }
  
  .hero-icon i {
    font-size: 2.5rem;
  }
  
  .services-section,
  .about-section,
  .contact-section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 1.05rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 1.75rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-features {
    align-items: center;
  }
  
  .feature-item {
    max-width: 400px;
    text-align: left;
  }
  
  .about-icon {
    width: 80px;
    height: 80px;
  }
  
  .about-icon i {
    font-size: 2.5rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .header-container {
    padding: 0.75rem 1rem;
  }
  
  .header-logo img {
    height: 32px;
  }
  
  .hero-banner {
    padding: 5rem 0 2rem;
  }
  
  .hero-content {
    padding: 0 0.5rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .hero-icon {
    width: 70px;
    height: 70px;
  }
  
  .hero-icon i {
    font-size: 2rem;
  }
  
  .hero-placeholder h3 {
    font-size: 1.25rem;
  }
  
  .hero-placeholder p {
    font-size: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  
  .btn-large {
    padding: 16px 28px;
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .services-section,
  .about-section,
  .contact-section,
  .stats-section {
    padding: 3rem 0;
  }
  
  .service-card {
    padding: 1.25rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-content h3 {
    font-size: 1.25rem;
  }
  
  .service-content p {
    font-size: 1rem;
  }
  
  .about-icon {
    width: 70px;
    height: 70px;
  }
  
  .about-icon i {
    font-size: 2rem;
  }
  
  .feature-item {
    flex-direction: row;
    text-align: left;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 1.25rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-column h4 {
    font-size: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 1rem;
  }
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Focus states for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Touch-friendly interactions for mobile */
@media (hover: none) and (pointer: coarse) {
  .btn-primary,
  .btn-secondary {
    padding: 18px 36px;
    min-height: 48px;
  }
  
  .mobile-menu-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
  }
  
  .nav-links a,
  .mobile-nav-links a {
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .service-card {
    cursor: pointer;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
				left: 0;
  right: 0;
  background: #1a1a1a;
  color: white;
  padding: 1.5rem 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-text h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: white;
}

.cookie-text p {
  font-size: 0.9rem;
  margin: 0;
  color: #e5e7eb;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.btn-text {
  background: none;
  border: none;
  color: #e5e7eb;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-text:hover {
  color: white;
}

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

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

.cookie-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
		width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-modal-header h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.5rem;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6b7280;
		cursor: pointer;
				padding: 0;
  width: 2rem;
  height: 2rem;
		display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #1a1a1a;
}

.cookie-modal-body {
  padding: 2rem;
}

.cookie-category {
  margin-bottom: 2rem;
}

.cookie-category:last-child {
			margin-bottom: 0;
}

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

.cookie-category-header h4 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.cookie-category p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.4;
}

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

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

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

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

input:checked + .toggle-slider {
  background-color: #2563eb;
}

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

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

.cookie-modal-footer {
  padding: 1rem 2rem 2rem 2rem;
  border-top: 1px solid #e5e7eb;
				display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Mobile Cookie Styles */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .cookie-actions {
    flex-direction: column;
					width: 100%;
				}

  .cookie-actions button {
				width: 100%;
  }
  
  .cookie-modal {
    padding: 1rem;
  }
  
  .cookie-modal-content {
    max-height: 90vh;
  }
  
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 1.5rem;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
}

/* Loading state */
.is-preload * {
  animation-play-state: paused !important;
}

.is-preload *:before,
.is-preload *:after {
  animation-play-state: paused !important;
}
