/* Main styles for domain - Financial Audit Company */

/* General reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #fef8f2;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #2d334a;
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #4f4f4f;
}

a {
  color: #fe6b3e;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ff8a65;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

/* Header styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  left: 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;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d334a;
}

.logo span {
  color: #fe6b3e;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 1.5rem;
}

nav a {
  color: #2d334a;
  font-weight: 500;
}

nav a:hover {
  color: #fe6b3e;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.mobile-menu-active {
  display: block !important;
}

/* Hero section */
.hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(to right, rgba(45, 51, 74, 0.05), rgba(254, 107, 62, 0.05));
}

.hero-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
  padding-right: 2rem;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: linear-gradient(to right, #fe6b3e, #ff8a65);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(to right, #ff8a65, #fe6b3e);
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(254, 107, 62, 0.3);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #fe6b3e;
  color: #fe6b3e;
}

.btn-secondary:hover {
  background-color: #fe6b3e;
  color: white;
}

/* About section */
.about {
  background-color: white;
}

/* Services section */
.services {
  background-color: #fef8f2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Benefits section */
.benefits {
  background-color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c8e6c9;
  color: #2d334a;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Testimonials */
.testimonials {
  background-color: #fef8f2;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

/* FAQ Section */
.faq {
  background-color: white;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background-color: #fef8f2;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  padding: 1rem;
  max-height: 500px;
}

/* Contact form */
.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-family: inherit;
  font-size: inherit;
}

.form-control:focus {
  outline: none;
  border-color: #fe6b3e;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-group input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

/* Footer */
footer {
  background-color: #2d334a;
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: #fe6b3e;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #e0e0e0;
}

.footer-links a:hover {
  color: #fe6b3e;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(45, 51, 74, 0.95);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
}

.cookie-text {
  flex: 1;
  padding-right: 1rem;
}

.cookie-buttons {
  flex-shrink: 0;
}

/* Policy pages */
.policy-container {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 6rem;
  margin-bottom: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-title {
  border-bottom: 2px solid #fe6b3e;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section h3 {
  margin-bottom: 1rem;
}

/* Thank you page */
.thank-you {
  text-align: center;
  padding: 8rem 0 6rem;
}

.thank-you-icon {
  font-size: 3rem;
  color: #c8e6c9;
  margin-bottom: 1rem;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 7rem 0 5rem;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav li {
    margin: 0;
    text-align: center;
  }
  
  nav a {
    display: block;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .cookie-consent {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-bottom: 1rem;
    padding-right: 0;
  }
}
