/* 
  Trade Prospector - Main Stylesheet
  A modern, clean design for a UK trade prospecting service
*/

/* ========== Base Styles ========== */
:root {
  --primary: #1e5799;
  --primary-light: #3d8af7;
  --primary-dark: #0d3a6b;
  --secondary: #f39c12;
  --secondary-light: #f7b44e;
  --secondary-dark: #d68910;
  --text-dark: #333333;
  --text-light: #777777;
  --text-white: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #2c3e50;
  --border-color: #e0e0e0;
  --success: #27ae60;
  --warning: #e67e22;
  --danger: #e74c3c;
  --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: var(--text-dark);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.2em;
  color: var(--text-light);
}

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

a:hover {
  color: var(--primary-light);
}

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

ul {
  list-style-type: none;
}

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

section {
  padding: 80px 0;
}

/* ========== Button Styles ========== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--text-white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* ========== Header ========== */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

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

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo h1 {
  margin-bottom: 0;
  font-size: 1.8rem;
  color: var(--primary-dark);
}

.logo h1 span {
  color: var(--secondary);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* ========== Hero Section ========== */
.hero {
  background: linear-gradient(rgba(30, 87, 153, 0.9), rgba(14, 47, 85, 0.9)), 
              url('../images/hero-bg.jpg') center/cover no-repeat;
  color: var(--text-white);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 
              rgba(30, 87, 153, 0.9) 0%,
              rgba(30, 87, 153, 0.85) 35%, 
              rgba(30, 87, 153, 0.6) 50%,
              rgba(30, 87, 153, 0.3) 65%,
              rgba(30, 87, 153, 0) 80%),
              url('../images/architect-1080592_1280.jpg') right center/cover no-repeat;
  z-index: 1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.15; }
}

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

.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
}

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

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ========== Features Section ========== */
.features {
  background-color: var(--background-light);
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-link {
  margin-top: auto;
  display: inline-block;
  color: #1E5799;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}

.feature-link:after {
  content: '→';
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.feature-link:hover:after {
  transform: translateX(3px);
}

.feature-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(61, 138, 247, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.feature-card .icon i {
  font-size: 28px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* ========== How It Works Section ========== */
.how-it-works {
  background-color: #ffffff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step {
  position: relative;
  padding: 30px;
  text-align: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--text-white);
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 20px;
}

/* ========== Trades Section ========== */
.trades {
  background-color: var(--background-light);
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.trade-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 12px 8px;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.trade-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.trade-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(243, 156, 18, 0.1);
  border-radius: 50%;
  margin-bottom: 10px;
}

.trade-icon i {
  font-size: 24px;
  color: var(--secondary);
}

.trade-item p {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 0.9rem;
  text-align: center;
}

.more-trades {
  text-align: center;
  margin-top: 30px;
}

/* ========== Testimonials ========== */
.testimonials {
  background-color: var(--background-light);
}

.testimonial-slider {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  flex: 1;
  min-width: 300px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author p {
  margin-bottom: 5px;
}

/* Testimonial star rating */
.rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.gold-star {
  color: #FFD700;
  font-size: 18px;
}

.testimonial-content:before {
  content: "\201C";
  font-size: 60px;
  color: var(--primary-light);
  opacity: 0.3;
  position: absolute;
  top: -15px;
  left: -15px;
  font-family: Georgia, serif;
}

.testimonial-author p {
  margin-bottom: 5px;
}

/* ========== CTA Section ========== */
.cta-section {
  background: linear-gradient(rgba(30, 87, 153, 0.9), rgba(14, 47, 85, 0.9)), 
              url('../images/cta-bg.jpg') center/cover no-repeat;
  color: var(--text-white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--text-white);
  margin-bottom: 20px;
}

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

/* ========== Footer ========== */
footer {
  background-color: var(--background-dark);
  color: var(--text-white);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-logo h3 span {
  color: var(--secondary);
}

.footer-logo p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text-white);
  margin-bottom: 20px;
}

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--secondary);
}

.footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.powered-by {
  margin-top: 15px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.skillsat-link {
  color: var(--text-white);
  text-decoration: underline;
}

.skillsat-link:hover {
  color: var(--secondary-light);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* ========== Page Header ========== */
.page-header {
  background: linear-gradient(rgba(30, 87, 153, 0.9), rgba(14, 47, 85, 0.9)), 
              url('../images/page-header-bg.jpg') center/cover no-repeat;
  color: var(--text-white);
  padding: 80px 0;
  text-align: center;
}

.page-header h2 {
  color: var(--text-white);
  margin-bottom: 15px;
}

.page-header p {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* ========== Confirmation Page ========== */
.confirmation {
  padding: 80px 0;
  background-color: var(--background-light);
}

.confirmation-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.confirmation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.confirmation-icon img {
  width: 120px;
  height: 120px;
  display: block;
}

.confirmation-message {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.confirmation-details {
  background-color: var(--background-light);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: left;
}

.contact-email {
  font-weight: 600;
  margin-top: 15px;
}

.contact-email a {
  color: var(--primary);
}

.next-steps {
  margin-top: 40px;
}

.next-steps h3 {
  margin-bottom: 15px;
}

.next-steps .cta-buttons {
  margin-top: 25px;
}

/* ========== Pricing Page ========== */
.pricing-plan {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.03);
  z-index: 1;
}

.price-card .ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  padding: 8px 30px;
  background-color: var(--secondary);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

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

.price-header {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 30px;
  text-align: center;
}

.price-header h3 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.amount {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.period {
  margin-top: 10px;
  opacity: 0.8;
}

.price-features {
  padding: 30px;
}

.price-features ul {
  margin-bottom: 0;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1rem;
}

.price-features li i {
  color: var(--success);
  margin-right: 10px;
  margin-top: 4px;
}

.price-cta {
  padding: 0 30px 30px;
  text-align: center;
}

.value-section {
  background-color: #ffffff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  padding: 30px;
  background-color: var(--background-light);
  border-radius: 8px;
  text-align: center;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: rgba(61, 138, 247, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 28px;
  color: var(--primary);
}

/* ========== Service Sections ========== */
.service-section {
  padding: 60px 0;
}

.service-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.service-section.alternate {
  background-color: #f8f9fa;
}

.service-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.service-content.reverse {
  flex-direction: row-reverse;
}

.service-info {
  flex: 1;
}

.service-image {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon {
  font-size: 8rem;
  color: #1E5799;
  opacity: 0.8;
}

.service-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-features {
  margin: 25px 0;
  padding-left: 0;
}

.service-features li {
  list-style-type: none;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.service-features i {
  color: #3CB371;
  margin-right: 10px;
  margin-top: 3px;
}

.pricing-highlight {
  background-color: #f0f8ff;
  border-left: 4px solid #1E5799;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
}

.pricing-highlight.custom {
  background-color: #fff7f0;
  border-left: 4px solid #ff8c42;
}

.wide-card {
  max-width: 600px;
  margin: 0 auto;
}

.custom-pricing {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.custom-pricing-content {
  text-align: center;
}

.custom-pricing-note {
  font-style: italic;
  margin-top: 20px;
  color: #666;
}

.service-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.service-list li {
  display: flex;
  align-items: center;
}

.service-list li i {
  color: #3CB371;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
  }
  
  .service-content.reverse {
    flex-direction: column;
  }
  
  .service-image {
    margin-bottom: 30px;
  }
  
  .service-list {
    grid-template-columns: 1fr;
  }
}

/* ========== FAQ Section ========== */
.faq-section {
  background-color: var(--background-light);
}

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

.faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(61, 138, 247, 0.05);
}

.faq-question h3, .faq-question h4 {
  margin-bottom: 0;
}

.faq-toggle i {
  color: var(--primary);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 20px;
  max-height: 300px;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

.faq-small {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ========== Contact Page ========== */
.contact-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  flex: 0 0 100%;
  margin-bottom: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-info {
    flex: 0 0 60%;
    text-align: left;
  }
  
  .contact-methods {
    flex: 0 0 35%;
    text-align: left;
  }
}

.contact-methods {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  text-align: left;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.email-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.email-link:hover {
  color: var(--secondary-dark);
  text-decoration: underline;
}

.contact-methods {
  margin-top: 30px;
}

.contact-method {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.contact-method .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(61, 138, 247, 0.1);
  border-radius: 50%;
  margin-right: 15px;
}

.contact-method .icon i {
  font-size: 20px;
  color: var(--primary);
}

.contact-method .details h4 {
  margin-bottom: 5px;
}

.contact-method .details p {
  margin-bottom: 5px;
}

.contact-form {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 8px;
}

.contact-form h3 {
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(61, 138, 247, 0.2);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.map-section {
  background-color: var(--background-light);
  padding-top: 40px;
  padding-bottom: 60px;
  text-align: center;
}

.map-section .section-title {
  margin-bottom: 20px;
}

.map-container {
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.uk-map {
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

/* ========== Media Queries ========== */
@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin-left: 0;
    margin-bottom: 20px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .testimonial-slider {
    flex-direction: column;
  }
  
  .testimonial {
    margin-bottom: 20px;
  }
  
  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 50px 0;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .feature-card,
  .step,
  .trade-item {
    padding: 20px;
  }
}
