<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Main styles for Financial Audit website */
:root {
  --primary-color: #4B0082; /* Bright indigo */
  --secondary-color: #A2E4B8; /* Cool mint */
  --background-color: #1E1E2F; /* Dark graphite */
  --accent-color: #D4AF37; /* Golden sand */
  --text-color: #E5E5E5; /* Light gray */
  --max-width: 1440px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
header {
  background-color: rgba(30, 30, 47, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--primary-color);
}

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

.logo {
  height: 60px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 600;
  position: relative;
}

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

nav ul li a:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
}

/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.8), rgba(30, 30, 47, 0.9));
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent, rgba(30, 30, 47, 0.6));
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.2;
}

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

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.cta-button:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover:before {
  left: 100%;
}

/* About section */
.about {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 20%;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.featured-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.featured-image:hover {
  transform: scale(1.03);
}

/* Advantages section */
.advantages {
  padding: 100px 0;
  background-color: rgba(75, 0, 130, 0.1);
}

.advantages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.advantage-item {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background-color: rgba(30, 30, 47, 0.7);
  padding: 40px 30px;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-left-color: var(--accent-color);
}

.advantage-icon {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.advantage-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* Services section */
.services {
  padding: 100px 0;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.service-item {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: linear-gradient(145deg, rgba(30, 30, 47, 0.9), rgba(75, 0, 130, 0.2));
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.services-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.full-width-image:hover {
  transform: scale(1.02);
}

/* Testimonials section */
.testimonials {
  padding: 100px 0;
  background-color: rgba(75, 0, 130, 0.1);
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-item {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background-color: rgba(30, 30, 47, 0.7);
  padding: 40px 30px;
  border-radius: 15px;
  position: relative;
}

.testimonial-item:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-color);
  opacity: 0.3;
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: bold;
  color: var(--secondary-color);
}

/* Order form section */
.order-form {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(30, 30, 47, 0.95), rgba(75, 0, 130, 0.8));
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(75, 0, 130, 0.3), rgba(30, 30, 47, 0.8));
  padding: 50px;
  border-radius: 15px;
  transform: skewY(-2deg);
}

.form-content {
  transform: skewY(2deg);
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(30, 30, 47, 0.6);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1rem;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.submit-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.submit-button:hover {
  background-color: var(--accent-color);
}

/* FAQ section */
.faq {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(75, 0, 130, 0.3);
  padding-bottom: 20px;
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: rgba(30, 30, 47, 0.95);
  padding: 70px 0 20px;
  border-top: 1px solid var(--primary-color);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-links {
  list-style: none;
}

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

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(75, 0, 130, 0.3);
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(30, 30, 47, 0.95);
  padding: 20px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-text {
  flex: 1;
  padding-right: 20px;
}

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

.cookie-button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.cookie-accept:hover {
  background-color: var(--accent-color);
}

.cookie-more {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--primary-color);
}

.cookie-more:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* Policy pages */
.policy-section {
  padding: 150px 0 80px;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(30, 30, 47, 0.7);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.policy-date {
  color: var(--accent-color);
  margin-bottom: 40px;
  font-style: italic;
}

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

.policy-item h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.policy-item p, .policy-item ul {
  margin-bottom: 15px;
}

.policy-item ul {
  padding-left: 30px;
}

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

/* Thank you page */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 20px 100px;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.8), rgba(30, 30, 47, 0.9));
}

.thankyou-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(30, 30, 47, 0.7);
  padding: 50px;
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.thankyou-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.thankyou-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.thankyou-buttons {
  margin-top: 40px;
}

/* Responsive design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .about-text {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  nav {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: rgba(30, 30, 47, 0.95);
    transition: var(--transition);
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .form-container, .policy-content, .thankyou-content {
    padding: 30px;
  }
  
  .cookie-consent {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    padding-right: 0;
    margin-bottom: 15px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 15px;
  }
  
  .logo {
    height: 50px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .advantage-item, .service-item, .testimonial-item {
    min-width: 100%;
  }
  
  .form-container, .policy-content, .thankyou-content {
    padding: 20px;
  }
  
  .policy-content h1, .thankyou-content h1 {
    font-size: 1.8rem;
  }
} </pre></body></html>