/* 
  ========================================
  Main Styles for Accounting Services Website
  Color Palette:
  - Deep plum: #6C3483
  - Bright coral: #FF6F61
  - Misty mint: #98E2C6
  - Lavender ash: #CAB8FF
  - Matte coal: #2B2B2B
  ========================================
*/

/* ========== Reset & Base Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Add padding for fixed header */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Section anchors */
section[id]:before {
  content: "";
  display: block;
  height: 80px;
  margin: -80px 0 0;
  visibility: hidden;
  position: relative;
  z-index: -1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: #6C3483;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FF6F61;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #2B2B2B;
  margin-bottom: 0.8em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, #6C3483, #FF6F61);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1em;
}

ul, ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

section {
  padding: 60px 0;
}

/* ========== Common Elements ========== */
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #6C3483, #CAB8FF);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(108, 52, 131, 0.2);
}

.cta-button:hover {
  background: linear-gradient(135deg, #5a2a6e, #b9a3ff);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(108, 52, 131, 0.3);
  color: white;
}

/* ========== Cookie Banner ========== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(43, 43, 43, 0.95);
  color: #fff;
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: #6C3483;
  color: white;
}

.cookie-btn.accept:hover {
  background-color: #5a2a6e;
}

.cookie-btn.reject {
  background-color: transparent;
  color: #CAB8FF;
  border: 1px solid #CAB8FF;
}

.cookie-btn.reject:hover {
  background-color: rgba(202, 184, 255, 0.1);
}

/* ========== Header ========== */
.site-header {
  padding: 15px 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-svg {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.logo-container:hover .logo-svg {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2B2B2B;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #2B2B2B;
  font-weight: 500;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #6C3483;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.nav-menu li a.nav-cta {
  color: #FF6F61;
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #2B2B2B;
  transition: all 0.3s ease-in-out;
}

/* ========== Main Banner ========== */
.main-banner {
  background: linear-gradient(135deg, rgba(108, 52, 131, 0.9), rgba(152, 226, 198, 0.9)), url('./img/AooY4M.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.main-banner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 300;
}

/* ========== Advantages Section ========== */
.advantages {
  background-color: #fff;
  text-align: center;
}

.advantages h2 {
  margin-bottom: 40px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.advantage-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  margin-bottom: 20px;
}

.advantage-card h3 {
  color: #6C3483;
  margin-bottom: 15px;
}

/* ========== Services Section ========== */
.services {
  background-color: #f9f9f9;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  color: #6C3483;
  margin-bottom: 15px;
}

.service-link {
  display: inline-block;
  margin-top: 20px;
  color: #FF6F61;
  font-weight: 600;
}

.service-link:hover {
  color: #6C3483;
}

/* ========== Testimonials Section ========== */
.testimonials {
  background: linear-gradient(135deg, rgba(255, 111, 97, 0.05), rgba(202, 184, 255, 0.1));
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 40px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  max-width: 350px;
  text-align: left;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.author-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ========== Contact Form ========== */
.contact-form {
  background-color: white;
  text-align: center;
}

.contact-form h2 {
  margin-bottom: 40px;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2B2B2B;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #CAB8FF;
  box-shadow: 0 0 0 3px rgba(202, 184, 255, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 5px;
}

.submit-button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #6C3483, #FF6F61);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: linear-gradient(135deg, #5a2a6e, #ff5a4a);
  transform: translateY(-2px);
}

/* ========== FAQ Section ========== */
.faq {
  background-color: #f9f9f9;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  display: block;
  position: relative;
  width: 100%;
}

.faq h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #6C3483, #FF6F61);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item.faq-open {
  box-shadow: 0 5px 15px rgba(108, 52, 131, 0.1);
}

.faq-question {
  padding: 20px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #6C3483;
  text-decoration: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  background-color: white;
  padding: 0 20px;
  display: none;
}

.faq-answer p {
  padding-bottom: 20px;
}

/* ========== Footer ========== */
.site-footer {
  background-color: #2B2B2B;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #CAB8FF;
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #FF6F61, #CAB8FF);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

.company-description {
  color: #b4b4b4;
  line-height: 1.6;
}

.contact-list, .legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li, .legal-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  color: #FF6F61;
  margin-top: 3px;
}

.legal-list li a {
  color: #b4b4b4;
  transition: color 0.3s ease;
}

.legal-list li a:hover {
  color: #CAB8FF;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #b4b4b4;
  font-size: 0.9rem;
  margin: 0;
}

/* ========== Thank You Page ========== */
.thank-you-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(108, 52, 131, 0.05), rgba(152, 226, 198, 0.1));
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #6C3483;
  position: relative;
}

.thank-you-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid #FF6F61;
  border-radius: 11px;
  pointer-events: none;
}

.thank-you-icon {
  margin-bottom: 30px;
}

.thank-you-actions {
  margin-top: 40px;
}

.additional-services {
  background-color: white;
}

.additional-services h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* ========== Policy Pages ========== */
.policy-content {
  background-color: white;
  padding: 60px 0;
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
}

.policy-header h1 {
  margin-bottom: 10px;
}

.last-update {
  color: #666;
  font-size: 0.9rem;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  color: #6C3483;
  margin-bottom: 20px;
}

.policy-section h3 {
  color: #FF6F61;
  font-size: 1.2rem;
  margin: 25px 0 15px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  margin-bottom: 10px;
}

/* ========== Responsive Styles ========== */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .advantages-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .company-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
  
  .main-banner {
    padding: 80px 0;
  }
  
  .main-banner h1 {
    font-size: 2rem;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .advantages-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonial-card {
    width: 100%;
  }
  
  .cookie-content {
    text-align: center;
  }
} 