/* 
* Main stylesheet
* Financial Audit Website
* 
* Colors:
* - Background: #1F2235
* - Accents: #FF6B6B, #4ECDC4, #FFE66D
* - Text: #FFFFFF, secondary text - #B0B8C5
* - Buttons: gradient from #4ECDC4 to #FFE66D
*/

/* -------------- Base Styles -------------- */
:root {
  --bg-color: #1F2235;
  --accent-red: #FF6B6B;
  --accent-teal: #4ECDC4;
  --accent-yellow: #FFE66D;
  --text-color: #FFFFFF;
  --text-secondary: #B0B8C5;
  --transition: all 0.3s ease;
  --shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  --container-width: 1200px;
  --border-radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-yellow));
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-yellow);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

section {
  padding: 6rem 0;
}

/* -------------- Buttons -------------- */
.btn-primary, 
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-yellow));
  color: var(--bg-color) !important;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-teal));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover:before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--accent-teal);
}

.btn-secondary:hover {
  background-color: var(--accent-teal);
  color: var(--bg-color);
  transform: translateY(-3px);
}

.btn-cookie {
  padding: 8px 20px;
  background-color: var(--accent-teal);
  color: var(--bg-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-cookie:hover {
  background-color: var(--accent-yellow);
}

/* -------------- Header -------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(31, 34, 53, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-svg {
  width: 150px;
  height: 40px;
}

.nav-container {
  position: relative;
}

.menu-toggle {
  display: none;
}

.hamburger-menu {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger-menu span {
  height: 2px;
  width: 100%;
  background-color: var(--text-color);
  transition: var(--transition);
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin-left: 2rem;
}

.nav-list a {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  display: inline-block;
}

.nav-list a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-teal);
  transition: var(--transition);
}

.nav-list a:hover:after {
  width: 100%;
}

.nav-list a:hover {
  color: var(--accent-teal);
}

.nav-cta {
  padding: 8px 20px !important;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-yellow));
  color: var(--bg-color) !important;
  border-radius: 50px;
}

.nav-cta:hover {
  color: var(--bg-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-cta:after {
  display: none;
}

/* -------------- Cookie Popup -------------- */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(31, 34, 53, 0.95);
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: bottom 0.5s ease;
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--accent-teal);
}

.cookie-popup.active {
  bottom: 0;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-content p {
  margin-right: 20px;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cookie-content a {
  color: var(--accent-yellow);
  text-decoration: underline;
}

/* -------------- Hero Section -------------- */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(rgba(31, 34, 53, 0.8), rgba(31, 34, 53, 0.9)), url(../img/veFV2.jpg) no-repeat center center/cover;
  text-align: center;
  padding-top: 80px;
}

.hero-section .container {
  max-width: 800px;
}

.hero-section h1 {
  margin-top: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

/* -------------- About Section -------------- */
.about-section {
  background-color: rgba(255, 255, 255, 0.03);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about-image:hover {
  transform: scale(1.03);
}

/* -------------- Services Section -------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 0;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-icon {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.05);
}

.service-card h3 {
  margin: 1.5rem 1.5rem 0.5rem;
  font-size: 1.5rem;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* -------------- Why Us Section -------------- */
.why-us-section {
  background-color: rgba(255, 255, 255, 0.03);
}

.why-us-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.why-us-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-us-features {
  flex: 1;
}

.feature {
  display: flex;
  margin-bottom: 2rem;
}

.feature:last-child {
  margin-bottom: 0;
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-red);
  margin-right: 1.5rem;
  line-height: 1;
  opacity: 0.8;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-secondary);
}

/* -------------- Process Section -------------- */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}

.process-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 35px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-teal), var(--accent-red));
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 3rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bg-color);
  z-index: 2;
  box-shadow: var(--shadow);
}

.step-content {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-yellow);
}

.step-content p {
  color: var(--text-secondary);
}

/* -------------- Testimonials Section -------------- */
.testimonials-slider {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  height: 100%;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-secondary);
  position: relative;
  margin-bottom: 1.5rem;
}

.testimonial-content p::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-red);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -15px;
  line-height: 1;
  font-family: Georgia, serif;
}

.client-info h4 {
  margin-bottom: 0.25rem;
  color: var(--accent-teal);
}

.client-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* -------------- FAQ Section -------------- */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.faq-title:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-title span {
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-title .icon {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-title .icon::before,
.faq-title .icon::after {
  content: '';
  position: absolute;
  background-color: var(--accent-teal);
  transition: var(--transition);
  border-radius: 2px;
}

.faq-title .icon::before {
  width: 16px;
  height: 2.5px;
  left: 2px;
  top: 9px;
}

.faq-title .icon::after {
  width: 2.5px;
  height: 16px;
  left: 9px;
  top: 2px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-title .icon::after {
  transform: rotate(90deg) scaleY(0);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(31, 34, 53, 0.8);
}

.faq-content p {
  padding: 1.5rem;
  color: var(--text-secondary);
}

.faq-item input[type="checkbox"]:checked ~ .faq-content {
  max-height: 500px;
}

/* -------------- Contact Section -------------- */
.contact-section {
  background-color: rgba(255, 255, 255, 0.03);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item svg {
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-item h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-yellow);
}

.info-item p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.info-item a {
  color: var(--text-color);
}

.contact-form {
  background: linear-gradient(145deg, rgba(31, 34, 53, 0.95), rgba(27, 30, 47, 0.95));
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-yellow), var(--accent-red));
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(176, 184, 197, 0.7);
  transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  opacity: 0.5;
  transform: translateX(5px);
}

/* Custom Select Styling */
.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none;
  cursor: pointer;
  background-color: rgba(31, 34, 53, 0.8);
}

.custom-select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--accent-teal);
  pointer-events: none;
  transition: all 0.3s ease;
}

.custom-select:hover::after {
  border-top-color: var(--accent-yellow);
}

.custom-select select option {
  background-color: rgba(31, 34, 53, 0.95);
  color: var(--text-color);
  padding: 15px;
  font-size: 1rem;
}

/* Checkbox Styling */
.consent-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.consent-group input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.consent-group label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  user-select: none;
}

.consent-group label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.consent-group label::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: all 0.2s ease;
}

.consent-group input[type="checkbox"]:checked + label::before {
  border-color: var(--accent-teal);
  background: var(--accent-teal);
}

.consent-group input[type="checkbox"]:checked + label::after {
  border-color: var(--bg-color);
}

.consent-group input[type="checkbox"]:focus + label::before {
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.3);
}

.consent-group label a {
  color: var(--accent-yellow);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.consent-group label a:hover {
  color: var(--accent-teal);
  text-decoration: none;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-yellow) 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-form .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-teal) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-form .btn-primary:hover::before {
  opacity: 1;
}

.contact-form .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Form Error Styles */
.form-error {
  color: var(--accent-red);
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.input-error {
  border-color: var(--accent-red) !important;
}

.input-error:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2) !important;
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success h3 {
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Contact Cards */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: linear-gradient(145deg, rgba(31, 34, 53, 0.8), rgba(27, 30, 47, 0.8));
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, rgba(31, 34, 53, 0.9), rgba(27, 30, 47, 0.9));
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-yellow) 100%);
  border-radius: 50%;
  margin-right: 1rem;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bg-color);
}

.contact-details h3 {
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-details p, 
.contact-details a {
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: var(--accent-teal);
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    order: 2;
    margin-top: 2rem;
  }
  
  .contact-form {
    order: 1;
  }
  
  .consent-group label {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .contact-card {
    padding: 1.2rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  
  .contact-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .contact-details h3 {
    font-size: 1.1rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 15px;
  }
}

/* -------------- Footer -------------- */
.site-footer {
  background-color: rgba(27, 30, 47, 0.95);
  padding: 4rem 0 1rem;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
}

.footer-logo a {
  display: inline-block;
  margin-bottom: 1rem;
}

.company-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  margin-bottom: 1.5rem;
  min-width: 150px;
}

.footer-column h3 {
  color: var(--accent-teal);
  margin-bottom: 1.2rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--accent-yellow);
  padding-left: 5px;
}

.footer-column address p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: normal;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* -------------- Responsive Styles -------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content,
  .why-us-content {
    flex-direction: column;
  }
  
  .about-image,
  .why-us-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .feature-number {
    font-size: 2rem;
  }
  
  .service-icon {
    height: 180px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hamburger-menu {
    display: flex;
    z-index: 110;
  }
  
  .nav-container {
    position: static;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(31, 34, 53, 0.98);
    backdrop-filter: blur(10px);
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
  }
  
  .menu-toggle:checked ~ .main-nav {
    right: 0;
  }
  
  .menu-toggle:checked ~ .hamburger-menu span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle:checked ~ .hamburger-menu span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .hamburger-menu span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-list li {
    margin: 0 0 1.5rem 0;
    width: 100%;
  }
  
  .nav-list a {
    display: block;
    padding: 5px 0;
    width: 100%;
  }
  
  .services-grid,
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content p {
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo {
    min-width: 100%;
  }
  
  .footer-links {
    flex-direction: column;
    width: 100%;
  }
  
  .footer-column {
    width: 100%;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .form-group.checkbox {
    align-items: flex-start;
  }
  
  .form-group.checkbox input[type="checkbox"] {
    margin-top: 2px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 2.5rem 0;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    height: 90vh;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  .process-step {
    padding-left: 60px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .process-timeline:before {
    left: 25px;
  }
  
  .service-icon {
    height: 160px;
  }
}

/* -------------- Policy Pages Unified Styles -------------- */
.policy-page {
  padding-top: 120px;
  padding-bottom: 4rem;
  background-image: linear-gradient(to bottom, rgba(31, 34, 53, 0.9), rgba(31, 34, 53, 0.95)), url("../img/G4oCg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: calc(100vh - 80px);
}

.policy-section .container {
  max-width: 900px;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.policy-header h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  padding-bottom: 1rem;
  display: inline-block;
  position: relative;
}

.policy-header h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-yellow));
  border-radius: 2px;
}

.policy-header .update-date {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.9rem;
}

.policy-content {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.policy-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-yellow));
}

.policy-content section {
  margin-bottom: 2.5rem;
  padding: 0;
}

.policy-content section:last-child {
  margin-bottom: 0;
}

.policy-content h2 {
  color: var(--accent-teal);
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 1.2rem;
  text-align: left;
  padding-bottom: 0;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--accent-red);
}

.policy-content h2::after {
  display: none;
}

.policy-content h3 {
  font-size: 1.3rem;
  color: var(--accent-yellow);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
  list-style-type: none;
}

.policy-content ul li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.5rem;
}

.policy-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-size: 1.2rem;
  line-height: 1.2;
}

.policy-content a {
  color: var(--accent-teal);
  text-decoration: none;
  border-bottom: 1px dotted var(--accent-teal);
  transition: var(--transition);
}

.policy-content a:hover {
  color: var(--accent-yellow);
  border-bottom-color: var(--accent-yellow);
}

.contact-info {
  background-color: rgba(31, 34, 53, 0.5);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--accent-yellow);
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: var(--accent-yellow);
}

.policy-footer {
  text-align: center;
}

.policy-footer .btn-primary {
  padding: 12px 30px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .policy-page {
    padding-top: 100px;
  }
  
  .policy-header h1 {
    font-size: 2rem;
  }
  
  .policy-content {
    padding: 1.8rem;
  }
  
  .policy-content h2 {
    font-size: 1.4rem;
  }
} 