/* Base Styles */
:root {
  --primary: #1A365D;
  --secondary: #E53E3E;
  --accent: #2B6CB0;
  --neutral: #4A5568;
  --background: #F7FAFC;
  --text: #2D3748;
  --highlight: #ED8936;
  --light-gray: #EDF2F7;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--primary);
  text-decoration: none;
}

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

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-desktop {
  display: flex;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--white);
  flex-direction: column;
  padding: 20px;
  z-index: 99;
  transform: translateX(-100%);
  transition: var(--transition);
}

.nav-mobile.active {
  display: flex;
  transform: translateX(0);
}

.nav-link {
  color: var(--primary);
  margin: 0 15px;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

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

.nav-link:hover::after, 
.nav-link:focus::after {
  width: 100%;
}

.nav-mobile .nav-link {
  margin: 15px 0;
  font-size: 1.2rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  transition: var(--transition);
}

.hamburger.active span:first-child {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:last-child {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: calc(100vh - 80px);
}

.hero-content, .hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.hero-content {
  background-color: var(--white);
  flex-direction: column;
  text-align: left;
}

.hero-image {
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary);
  line-height: 1.1;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--neutral);
  max-width: 500px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover, .btn:focus {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--accent);
  color: var(--white);
}

/* Service Cards */
.services {
  padding: 80px 0;
  background-color: var(--background);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--neutral);
  max-width: 700px;
  margin: 0 auto;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-icon i {
  font-size: 24px;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card p {
  color: var(--neutral);
  flex-grow: 1;
}

/* Interactive Sections */
.interactive-section {
  padding: 80px 0;
}

.interactive-section:nth-child(even) {
  background-color: var(--light-gray);
}

.interactive-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.interactive-content, .interactive-visual {
  flex: 1;
  min-width: 300px;
}

.interactive-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.interactive-content p {
  margin-bottom: 30px;
  color: var(--neutral);
}

.interactive-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.control-btn {
  padding: 8px 16px;
  background-color: var(--light-gray);
  color: var(--neutral);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.control-btn.active {
  background-color: var(--accent);
  color: var(--white);
}

.visual-container {
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 400px;
  position: relative;
  overflow: hidden;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  margin: 20px 0;
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.timeline-date {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.timeline-title {
  font-weight: 500;
  margin-bottom: 10px;
}

.timeline-content {
  color: var(--neutral);
}

/* Calculator */
.calculator {
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.calculator-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.calculator-field {
  flex: 1;
  min-width: 200px;
}

.calculator-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary);
}

.calculator-field input, .calculator-field select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: inherit;
}

.calculator-results {
  margin-top: 20px;
  padding: 15px;
  background-color: var(--light-gray);
  border-radius: 4px;
}

.calculator-results p {
  margin: 10px 0;
}

.result-value {
  font-weight: 700;
  color: var(--accent);
}

/* Report Preview */
.report-preview {
  margin-top: 50px;
  padding: 40px 0;
}

.report-card {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.report-image {
  flex: 1;
  min-width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
}

.report-content {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.report-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.report-content p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.report-carousel {
  margin: 20px 0;
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 15px;
}

.report-carousel::-webkit-scrollbar {
  height: 5px;
}

.report-carousel::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: 5px;
}

.report-carousel::-webkit-scrollbar-thumb {
  background-color: var(--neutral);
  border-radius: 5px;
}

.carousel-item {
  flex: 0 0 auto;
  width: 120px;
  height: 160px;
  background-color: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-item:hover {
  transform: scale(1.05);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Benefits Section */
.benefits {
  padding: 60px 0;
  background-color: var(--primary);
  color: var(--white);
}

.benefits h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.benefit-icon {
  flex: 0 0 40px;
  height: 40px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.benefit-icon i {
  color: var(--white);
  font-size: 18px;
}

.benefit-text h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.benefit-text p {
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Form */
.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  min-width: 250px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary);
}

.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
}

.form-check input {
  margin-top: 5px;
  margin-right: 10px;
}

.form-submit {
  text-align: right;
}

.error-text {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* About Page */
.about-section {
  padding: 80px 0;
}

.about-section:nth-child(even) {
  background-color: var(--light-gray);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.values-list {
  margin-top: 30px;
}

.value-item {
  display: flex;
  margin-bottom: 20px;
}

.value-item i {
  color: var(--accent);
  font-size: 24px;
  margin-right: 15px;
}

.value-text h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

/* Consulting Page */
.service-offering {
  margin-bottom: 30px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-offering h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-steps {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-step {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 8px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.service-step h4 {
  margin-bottom: 10px;
}

.use-case {
  margin-bottom: 30px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.use-case h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.use-case h3 i {
  margin-right: 15px;
  color: var(--accent);
}

.use-case-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.use-case-problem, .use-case-solution {
  flex: 1;
  min-width: 300px;
}

.use-case h4 {
  margin-bottom: 15px;
  color: var(--neutral);
  font-size: 1.1rem;
}

.estimator-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.estimator-result {
  margin-top: 20px;
  padding: 20px;
  border-radius: 8px;
  background-color: var(--light-gray);
  display: none;
}

.estimator-result.active {
  display: block;
}

.result-level {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent);
}

/* Blog Page */
.blog-header {
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  margin-bottom: 60px;
}

.blog-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 54, 93, 0.7);
}

.blog-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.blog-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.blog-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-search {
  position: relative;
  min-width: 250px;
}

.blog-search input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: inherit;
}

.blog-search i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral);
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.blog-post {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.blog-post-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-date {
  font-size: 0.9rem;
  color: var(--neutral);
  margin-bottom: 10px;
}

.blog-post-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-post-excerpt {
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-post-link {
  align-self: flex-start;
}

/* Single Post Page */
.post-header {
  text-align: center;
  max-width: 800px;
  margin: 60px auto 40px;
  padding: 0 20px;
}

.post-header h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.post-meta {
  font-size: 0.9rem;
  color: var(--neutral);
  margin-bottom: 30px;
}

.post-image {
  width: 100%;
  max-width: 1000px;
  height: 400px;
  margin: 0 auto 40px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
}

.post-content {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.post-content h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
}

.post-content h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
}

.post-content ul, .post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-content blockquote {
  margin: 30px 0;
  padding: 20px 30px;
  background-color: var(--light-gray);
  border-left: 4px solid var(--accent);
  font-style: italic;
}

/* Contact Page */
.contact-header {
  text-align: center;
  margin: 60px 0 40px;
}

.contact-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 1.2rem;
  color: var(--neutral);
  max-width: 700px;
  margin: 0 auto;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-map {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  flex: 0 0 40px;
  height: 40px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  border-radius: 50%;
}

.contact-icon i {
  color: var(--primary);
  font-size: 18px;
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.contact-text p, .contact-text a {
  color: var(--neutral);
}

.gdpr-notice {
  margin-top: 40px;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.gdpr-notice h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Policy Pages */
.policy-header {
  text-align: center;
  margin: 60px 0 40px;
}

.policy-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.policy-date {
  font-size: 0.9rem;
  color: var(--neutral);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}

.policy-section h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
}

.policy-section p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.policy-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 10px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.policy-table th, .policy-table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid var(--light-gray);
}

.policy-table th {
  background-color: var(--light-gray);
  color: var(--primary);
  font-weight: 500;
}

.policy-table tr:nth-child(even) {
  background-color: var(--background);
}

/* Thanks Page */
.thanks-container {
  max-width: 800px;
  margin: 100px auto;
  padding: 60px 30px;
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-icon i {
  font-size: 50px;
}

.thanks-container h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.thanks-container p {
  font-size: 1.2rem;
  color: var(--neutral);
  margin-bottom: 30px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--white);
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: var(--light-gray);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--neutral);
  color: var(--white);
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.modal-content p {
  margin-bottom: 15px;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

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

.cookie-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.8);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-settings-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

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

.cookie-accept-btn {
  background-color: var(--white);
  color: var(--primary);
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept-btn:hover {
  background-color: var(--light-gray);
}

.cookie-settings-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: var(--white);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  overflow-y: auto;
}

.cookie-settings-panel.active {
  transform: translateX(0);
}

.settings-header {
  padding: 20px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.settings-header h3 {
  font-size: 1.5rem;
}

.settings-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--neutral);
  cursor: pointer;
  transition: var(--transition);
}

.settings-close:hover {
  color: var(--primary);
}

.settings-content {
  padding: 20px;
}

.cookie-category {
  margin-bottom: 30px;
}

.cookie-category h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  margin-bottom: 15px;
  color: var(--neutral);
}

.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: var(--light-gray);
  border-radius: 24px;
  transition: var(--transition);
}

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

.cookie-toggle input:checked + .toggle-slider {
  background-color: var(--accent);
}

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

.cookie-toggle input:disabled + .toggle-slider {
  background-color: var(--neutral);
  opacity: 0.5;
  cursor: not-allowed;
}

.settings-actions {
  padding: 20px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 500;
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact-icon {
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-contact-text a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--white);
}

/* IntlTelInput Styles */
.iti {
  width: 100%;
}

/* Utilities */
.bg-primary {
  background-color: var(--primary);
  color: var(--white);
}

.bg-accent {
  background-color: var(--accent);
  color: var(--white);
}

.text-primary {
  color: var(--primary);
}

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

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

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

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

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.fade-in-delay-1 {
  animation: fadeIn 0.5s ease 0.1s forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fadeIn 0.5s ease 0.2s forwards;
  opacity: 0;
}

.fade-in-delay-3 {
  animation: fadeIn 0.5s ease 0.3s forwards;
  opacity: 0;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .interactive-content h2 {
    font-size: 2rem;
  }
  
  .post-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .interactive-content h2 {
    font-size: 1.8rem;
  }
  
  .service-steps {
    flex-direction: column;
  }
  
  .post-header h1 {
    font-size: 2.2rem;
  }
  
  .policy-header h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .interactive-content h2 {
    font-size: 1.6rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
  }
  
  .thanks-container {
    padding: 40px 20px;
  }
  
  .thanks-container h1 {
    font-size: 2rem;
  }
}