/* Financial Audit Website - domain.com */
/* Global Styles */
:root {
  --emerald: #014D40;
  --yellow: #FFD95A;
  --gray: #2B2B2B;
  --turquoise: #4DD7C4;
  --white: #FFFFFF;
  --dark-gray: #1E1E1E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--emerald);
  color: var(--white);
  line-height: 1.6;
}

section[id] {
  scroll-margin-top: 40px;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--turquoise);
}

.btn {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--gray);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--turquoise);
  transform: translateY(-3px);
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* Header */
header {
  background-color: var(--gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.logo:hover {
  color: var(--yellow);
}

/* Navigation */
nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  color: var(--white);
  font-weight: 600;
}

nav ul li a:hover {
  color: var(--yellow);
}

/* Burger Menu */
.burger-menu-checkbox {
  display: none;
}

.burger-menu-label {
  display: none;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
}

.burger-menu-label span {
  background: var(--white);
  border-radius: 10px;
  height: 3px;
  margin: 3px 0;
  transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.burger-menu-label span:nth-of-type(1) {
  width: 50%;
}

.burger-menu-label span:nth-of-type(2) {
  width: 100%;
}

.burger-menu-label span:nth-of-type(3) {
  width: 75%;
}

.burger-menu-checkbox:checked ~ .burger-menu-label span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(5px, 0px);
}

.burger-menu-checkbox:checked ~ .burger-menu-label span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

.burger-menu-checkbox:checked ~ .burger-menu-label span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(14px, -7px) rotatez(45deg);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 3.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* About Section */
.about {
  background-color: var(--white);
  color: var(--dark-gray);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: var(--gray);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  color: var(--yellow);
  margin-bottom: 15px;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.step-card {
  background-color: var(--white);
  color: var(--dark-gray);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--yellow);
  color: var(--gray);
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
  color: var(--dark-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: var(--emerald);
  color: var(--white);
  border-radius: 8px;
  padding: 20px;
  position: relative;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
}

.client {
  font-weight: bold;
}

.client-position {
  color: var(--yellow);
  font-size: 0.9rem;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.benefit-card {
  background-color: var(--gray);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--yellow);
  margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--gray);
  border-radius: 8px;
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--emerald);
  border-radius: 4px;
  background-color: var(--white);
  color: var(--dark-gray);
}

.form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--emerald);
  border-radius: 4px;
  background-color: var(--white);
  color: var(--dark-gray);
}

.form-select option {
  background-color: var(--white);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 4px;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.faq-checkbox {
  display: none;
}

.faq-question {
  background-color: var(--gray);
  padding: 15px;
  cursor: pointer;
  display: block;
  position: relative;
  font-weight: bold;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.faq-checkbox:checked ~ .faq-question::after {
  content: '-';
}

.faq-answer {
  background-color: rgba(43, 43, 43, 0.8);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 500px;
}

.faq-content {
  padding: 15px;
}

/* Thanks Page */
.thanks-container {
  margin: 8rem auto 5rem;
  max-width: 600px;
  background-color: var(--gray);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--yellow);
}

/* Policy Pages */
.policy-container {
  margin: 8rem auto 5rem;
  max-width: 800px;
  background-color: var(--gray);
  border-radius: 8px;
  padding: 30px;
  border: 2px solid var(--yellow);
}

.policy-container h1 {
  color: var(--yellow);
  margin-bottom: 30px;
}

.policy-container h2 {
  color: var(--turquoise);
  font-size: 1.8rem;
  margin-top: 30px;
}

.policy-container p {
  margin-bottom: 15px;
}

.policy-container ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

/* Footer */
footer {
  background-color: var(--gray);
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-company,
.footer-links,
.footer-contact {
  margin-bottom: 20px;
}

.footer-company h3,
.footer-links h3,
.footer-contact h3 {
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--gray);
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  display: none;
}

.cookie-popup.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-text {
  margin-right: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .header-container {
    height: 70px;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--gray);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav ul {
    flex-direction: column;
    padding: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .burger-menu-label {
    display: flex;
  }

  .burger-menu-checkbox:checked ~ nav {
    max-height: 100vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 20px;
  }

  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
