/* Global Styles */
:root {
  --primary-color: #2E1A47;
  --secondary-color: #084C61;
  --accent1: #DB504A;
  --accent2: #56A3A6;
  --accent3: #E3B505;
  --bg-dark: #121212;
  --bg-darker: #1E1E1E;
  --bg-medium: #2D2D2D;
  --text-light: #FFFFFF;
  --text-muted: #E0E0E0;
  --text-accent: #BDB2FF;
  --transition: all 0.3s ease;
  --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(46, 26, 71, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(8, 76, 97, 0.2) 0%, transparent 50%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-light);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--accent1);
  transform: skewX(-20deg);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

a {
  color: var(--accent2);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: var(--accent1);
}

a:not(.btn):after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent1);
  transition: var(--transition);
}

a:not(.btn):hover:after {
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--box-shadow);
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  transition: var(--transition);
  z-index: -1;
}

.btn:hover:before {
  left: 0;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent2);
}

.btn-secondary:before {
  background: var(--accent2);
}

.btn-secondary:hover {
  color: var(--bg-dark);
}

.text-accent {
  color: var(--accent1);
}

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

.section {
  padding: 5rem 0;
  position: relative;
}

.section:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: -1;
}

.section-angled {
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
  margin: 3rem 0;
  padding: 8rem 0;
}

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

.section-accent {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.diagonal-container {
  position: relative;
  transform: skewY(-5deg);
  padding: 2rem 0;
}

.diagonal-content {
  transform: skewY(5deg);
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1rem 0;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(18, 18, 18, 0.95);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent1);
  transition: var(--transition);
}

.nav-links a:hover:after, .nav-links a.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-darker);
  margin-bottom: 3rem;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.hero:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(46, 26, 71, 0.8), rgba(8, 76, 97, 0.8));
  z-index: 1;
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--bg-medium);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.feature-card:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card:hover:before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent2);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

/* About Section */
.about {
  position: relative;
  padding: 5rem 0;
}

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

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--bg-medium);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent1);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Services Section */
.services {
  padding: 5rem 0;
}

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

.service-card {
  background-color: var(--bg-medium);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--bg-darker);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--bg-medium);
  padding: 2rem;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: var(--box-shadow);
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia, serif;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* Blog Section */
.blog {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background-color: var(--bg-medium);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--accent3);
  margin-bottom: 0.5rem;
}

.blog-content h3 {
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--accent2);
  position: relative;
}

.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover:after {
  margin-left: 0.8rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
}

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

.contact-info {
  background-color: var(--bg-medium);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent2);
  margin-right: 1rem;
  min-width: 30px;
}

.contact-form {
  background-color: var(--bg-medium);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--bg-dark);
  border: 1px solid var(--bg-medium);
  border-radius: var(--border-radius);
  color: var(--text-light);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.map-container {
  height: 300px;
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background-color: var(--bg-darker);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2), var(--accent3));
}

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

.footer-info, .footer-links, .footer-subscribe {
  padding: 0 1rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--bg-medium);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent1);
  transform: translateY(-3px);
}

.footer-links h3 {
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent2);
  padding-left: 5px;
}

.footer-subscribe h3 {
  margin-bottom: 1.5rem;
}

.subscribe-form {
  display: flex;
}

.subscribe-input {
  flex-grow: 1;
  padding: 0.8rem;
  background-color: var(--bg-dark);
  border: 1px solid var(--bg-medium);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  color: var(--text-light);
}

.subscribe-btn {
  padding: 0 1.5rem;
  background-color: var(--accent2);
  color: var(--text-light);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.subscribe-btn:hover {
  background-color: var(--accent1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-medium);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: var(--bg-medium);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

.cookie-content {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-settings-btn {
  background-color: transparent;
  border: 1px solid var(--accent2);
  color: var(--text-light);
}

/* Cookie Settings */
.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-settings.show {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-modal {
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  background-color: var(--bg-medium);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

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

.cookie-settings-header h3 {
  margin-bottom: 0;
}

.cookie-settings-close {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-settings-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-darker);
}

.cookie-tab {
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.cookie-tab.active {
  color: var(--accent2);
  border-bottom-color: var(--accent2);
}

.cookie-settings-content {
  margin-bottom: 2rem;
}

.cookie-type {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-darker);
}

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

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

.cookie-type-title {
  font-weight: 600;
  margin-bottom: 0;
}

/* Switch Toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark);
  transition: var(--transition);
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--text-light);
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent2);
}

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

.cookie-settings-buttons {
  display: flex;
  justify-content: space-between;
}

/* Blog Detail Page */
.blog-detail {
  padding: 5rem 0;
}

.blog-header {
  margin-bottom: 3rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.blog-author {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}

.blog-author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.blog-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-date {
  display: flex;
  align-items: center;
}

.blog-date i {
  margin-right: 0.5rem;
}

.blog-featured-image {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.blog-content {
  margin-bottom: 3rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content h2, .blog-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-content li {
  margin-bottom: 0.8rem;
}

.blog-content img {
  margin: 2rem 0;
  border-radius: var(--border-radius);
}

.blog-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: var(--bg-darker);
  border-left: 5px solid var(--accent2);
  font-style: italic;
}

.blog-share {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bg-medium);
}

.blog-share-title {
  margin-right: 1rem;
  margin-bottom: 0;
}

.blog-share-icons {
  display: flex;
  gap: 1rem;
}

.blog-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--bg-medium);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.2rem;
  transition: var(--transition);
}

.blog-share-icon:hover {
  background-color: var(--accent1);
  transform: translateY(-3px);
}

.blog-related {
  margin-top: 3rem;
}

.blog-related h3 {
  margin-bottom: 2rem;
}

/* Privacy Policy and Terms Pages */
.policy-page {
  padding: 8rem 0 5rem;
}

.policy-content {
  background-color: var(--bg-medium);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p, .policy-content ul {
  margin-bottom: 1.5rem;
}

.policy-content ul {
  padding-left: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.8rem;
}

.policy-date {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-darker);
  font-style: italic;
  color: var(--text-muted);
}

/* Animation Keyframes */
@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Diagonal Sections */
.diagonal-section {
  position: relative;
  padding: 8rem 0;
  margin: 4rem 0;
}

.diagonal-section:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transform: skewY(-5deg);
  transform-origin: 100%;
  background-color: var(--bg-darker);
  z-index: -1;
}

.diagonal-content {
  position: relative;
  z-index: 1;
}

/* Organic Texture */
.organic-texture {
  position: relative;
}

.organic-texture:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

/* Thanks Page */
.thanks-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--bg-medium);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 0 auto;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--accent2);
  margin-bottom: 2rem;
}

.thanks-content h1 {
  margin-bottom: 1.5rem;
}

.thanks-content p {
  margin-bottom: 2rem;
}

/* International Telephone Input overrides */
.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 3;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

@media (max-width: 992px) {
  .section {
    padding: 4rem 0;
  }

  .diagonal-section {
    padding: 6rem 0;
  }

  .contact-grid, .about-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .section {
    padding: 3rem 0;
  }

  .diagonal-section {
    padding: 5rem 0;
  }

  .hero {
    height: auto;
    min-height: 100vh;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--bg-darker);
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    height: auto;
    padding: 1rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .nav-links li {
    margin: 1rem 0;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    margin-bottom: 1rem;
  }

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

  .cookie-settings-tabs {
    overflow-x: auto;
    white-space: nowrap;
  }

  .cookie-tab {
    padding: 0.8rem 1rem;
  }

  .cookie-settings-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .diagonal-section {
    padding: 4rem 0;
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .policy-content {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}