/* 
   Updated CSS for Greywolfe Investing Clone - Final Version
   This file contains all the styling for the Greywolfe Investing website clone
   with improvements to match the original website exactly
*/

/* ===== GLOBAL STYLES ===== */
:root {
  --primary-color: #1a2a3a;
  --secondary-color: #7a99b8;
  --accent-color: #e0e6ed;
  --text-color: #333;
  --light-text: #fff;
  --dark-bg: #0f1923;
  --medium-bg: #1a2a3a;
  --light-bg: #f5f5f5;
  --footer-bg: #0f1923;
  --border-color: #ddd;
  --font-primary: 'Droid Sans', Arial, sans-serif;
  --font-secondary: Georgia, serif;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== HEADER STYLES ===== */
header {
  background-color: rgba(15, 25, 35, 0.9);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--light-text);
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.logo {
  text-align: center;
  padding: 0.5rem 0;
}

.logo img {
  max-height: 80px;
}

nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 1rem 0;
}

.nav-menu li a {
  color: var(--light-text);
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.nav-menu li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-menu li a:hover:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--light-text);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  background-color: var(--dark-bg);
  background-image: url('../images/backgrounds/hero_background.png');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  text-align: center;
  padding: 10rem 2rem 6rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 25, 35, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero h3 {
  font-size: 1.8rem;
  font-style: italic;
  margin-top: 2rem;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  width: 60%;
  max-width: 500px;
  z-index: 0;
}

/* ===== STATS SECTION ===== */
.stats {
  background-color: var(--accent-color);
  padding: 1.5rem 0;
  text-align: center;
}

.stat-container {
  max-width: 1000px;
  margin: 0 auto;
}

.stats p {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary-color);
}

/* ===== CONTENT SECTIONS ===== */
section {
  padding: 5rem 2rem;
}

section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
}

section h2:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.our-story, .amazon-fba, .team-section, .what-makes-us-different, .testimonials-section {
  max-width: 1200px;
  margin: 0 auto;
}

.story-content, .fba-content, .difference-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p, .fba-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.story-highlight {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 2rem 0;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--secondary-color);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.team-member p {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 0;
}

.team-image {
  margin-top: 3rem;
  text-align: center;
}

.team-image img {
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.what-makes-us-different {
  background-color: var(--medium-bg);
  color: var(--light-text);
  padding: 5rem 2rem;
  text-align: center;
}

.what-makes-us-different h2:after {
  background-color: var(--light-text);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.credential {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  padding: 2rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.credential:hover {
  transform: translateY(-10px);
}

.credential-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credential-icon img {
  width: 50px;
  height: 50px;
}

.credential h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  margin-top: 3rem;
  text-align: center;
}

.cta-button a {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--secondary-color);
  color: var(--light-text);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button a:hover {
  background-color: var(--light-text);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.qualification-cta {
  margin-top: 2rem;
}

/* ===== HOME TESTIMONIALS ===== */
.testimonials-section {
  background-color: var(--light-bg);
  padding: 5rem 2rem;
}

.testimonials-section h2 {
  margin-bottom: 1rem;
}

.testimonials-section h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 400;
  font-style: italic;
}

.home-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.home-testimonial {
  flex: 1;
  min-width: 300px;
  padding: 2.5rem;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.home-testimonial p {
  font-style: italic;
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
}

.home-testimonial p:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--secondary-color);
  font-family: Georgia, serif;
}

.home-testimonial h4 {
  margin-top: 1.5rem;
  text-align: right;
  font-weight: 400;
  color: var(--secondary-color);
}

/* ===== HOME CONTACT FORM ===== */
.contact-home-section {
  background-color: var(--light-bg);
  padding: 5rem 2rem;
}

.contact-home-content {
  max-width: 800px;
  margin: 0 auto;
}

.home-contact-form {
  margin-top: 2rem;
  background-color: #fff;
  padding: 3rem;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ===== FTC DISCLAIMER ===== */
.ftc-disclaimer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.8rem;
}

.ftc-disclaimer p {
  margin: 0;
  letter-spacing: 1px;
}

/* ===== TESTIMONIALS PAGE ===== */
.testimonials-hero {
  background-color: var(--dark-bg);
  color: var(--light-text);
  text-align: center;
  padding: 10rem 2rem 5rem;
  position: relative;
}

.testimonials-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 25, 35, 0.8);
}

.testimonials-hero .hero-content {
  position: relative;
  z-index: 1;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.testimonial {
  margin-bottom: 3rem;
  padding: 3rem;
  background-color: var(--light-bg);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  position: relative;
  padding-left: 3rem;
}

.testimonial-content:before {
  content: '"';
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 4rem;
  color: var(--secondary-color);
  font-family: Georgia, serif;
}

.testimonial h3 {
  margin-top: 1.5rem;
  text-align: right;
  color: var(--secondary-color);
  font-style: italic;
  font-weight: 400;
}

/* ===== PACKAGES PAGE ===== */
.packages {
  padding: 5rem 2rem;
}

.package-options {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  margin: 4rem 0;
}

.package {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 3rem;
  background-color: var(--light-bg);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.package h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  font-size: 1.8rem;
}

.package-details ul {
  margin-bottom: 2.5rem;
  list-style-type: none;
  margin-left: 0;
}

.package-details li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.package-details li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.package-cta {
  text-align: center;
}

.package-cta a {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--secondary-color);
  color: var(--light-text);
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.package-cta a:hover {
  background-color: var(--primary-color);
}

.package-info {
  max-width: 800px;
  margin: 4rem auto 0;
  text-align: center;
  font-size: 1.1rem;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background-color: var(--dark-bg);
  color: var(--light-text);
  text-align: center;
  padding: 10rem 2rem 5rem;
  position: relative;
}

.contact-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 25, 35, 0.8);
}

.contact-hero .hero-content {
  position: relative;
  z-index: 1;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.map-container {
  margin: 2rem 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 3rem;
  background-color: var(--light-bg);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.form-group label span {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

.name-fields {
  display: flex;
  gap: 1.5rem;
}

.input-group {
  flex: 1;
}

input, textarea, select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(122, 153, 184, 0.2);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit button {
  padding: 1rem 3rem;
  background-color: var(--secondary-color);
  color: var(--light-text);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-submit button:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== FAQ PAGE ===== */
.faq-hero {
  background-color: var(--dark-bg);
  color: var(--light-text);
  text-align: center;
  padding: 10rem 2rem 5rem;
  position: relative;
}

.faq-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 25, 35, 0.8);
}

.faq-hero .hero-content {
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background-color: var(--light-bg);
  border: none;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.faq-button:hover {
  background-color: #e9ecef;
}

.faq-button:after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--secondary-color);
}

.faq-button.active {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.faq-button.active:after {
  content: '−';
  color: var(--light-text);
}

.faq-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background-color: #fff;
}

.faq-content p, .faq-content ul, .faq-content ol {
  margin-bottom: 1rem;
}

.faq-content ul, .faq-content ol {
  margin-left: 2rem;
}

.faq-button.active + .faq-content {
  padding: 1.5rem;
  max-height: 2000px;
}

.faq-contact-section {
  background-color: var(--light-bg);
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.faq-contact-section h2 {
  margin-bottom: 1rem;
}

.faq-contact-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.faq-contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  background-color: var(--dark-bg);
  color: var(--light-text);
  text-align: center;
  padding: 10rem 2rem 5rem;
  position: relative;
}

.blog-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 25, 35, 0.8);
}

.blog-hero .hero-content {
  position: relative;
  z-index: 1;
}

.blog-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.blog-post {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.post-date {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.post-author {
  font-style: italic;
  margin-bottom: 1rem;
  color: #666;
}

.blog-post h2 {
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: 2rem;
}

.blog-post h2:after {
  display: none;
}

.post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary-color);
  font-weight: 700;
  position: relative;
  padding-right: 1.5rem;
}

.read-more:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}

.read-more:hover:after {
  right: -5px;
}

.older-posts {
  text-align: center;
  margin-top: 3rem;
}

.older-posts a {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--secondary-color);
  color: var(--light-text);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  letter-spacing: 1px;
}

.older-posts a:hover {
  background-color: var(--primary-color);
}

/* ===== FOOTER STYLES ===== */
footer {
  background-color: var(--footer-bg);
  color: var(--light-text);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}

.footer-logo img {
  max-width: 200px;
}

.footer-info {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-legal {
  width: 100%;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.9rem;
}

.footer-legal p {
  margin-bottom: 0.5rem;
}

.footer-legal a {
  color: var(--light-text);
  margin: 0 0.5rem;
}

.footer-legal a:hover {
  color: var(--secondary-color);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero-logo {
    width: 50%;
  }
  
  .credentials {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  section {
    padding: 4rem 2rem;
  }
  
  .hero {
    padding: 8rem 2rem 5rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h2 {
    font-size: 1.6rem;
  }
  
  .hero h3 {
    font-size: 1.5rem;
  }
  
  .stats p {
    font-size: 1.3rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .credentials {
    gap: 1rem;
  }
  
  .credential {
    min-width: 180px;
    padding: 1.5rem 1rem;
  }
  
  .home-testimonials {
    flex-direction: column;
  }
  
  .package {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    gap: 1rem;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero {
    padding: 7rem 1.5rem 4rem;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.4rem;
  }
  
  .hero h3 {
    font-size: 1.3rem;
  }
  
  .hero-logo {
    width: 70%;
  }
  
  section {
    padding: 3rem 1.5rem;
  }
  
  section h2 {
    font-size: 2rem;
  }
  
  .stats p {
    font-size: 1.1rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
  }
  
  .credentials {
    flex-direction: column;
    align-items: center;
  }
  
  .credential {
    min-width: 100%;
    max-width: 300px;
  }
  
  .name-fields {
    flex-direction: column;
    gap: 1rem;
  }
  
  .package-options {
    flex-direction: column;
    align-items: center;
  }
  
  .package {
    min-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto 2rem;
  }
  
  .footer-info {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-section {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 6rem 1rem 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .hero h3 {
    font-size: 1.1rem;
  }
  
  section {
    padding: 2.5rem 1rem;
  }
  
  section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .stats p {
    font-size: 0.9rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .home-testimonial, .testimonial {
    padding: 1.5rem;
  }
  
  .contact-form, .home-contact-form, .faq-contact-form {
    padding: 1.5rem;
  }
  
  .blog-post h2 {
    font-size: 1.6rem;
  }
}

/* Remove "Made with Manus" attribution */
[href*="manus"] {
  display: none !important;
}
