/* Base Styles & Variables */
:root {
  /* Colors */
  --deep-charcoal: #1A1A1A;
  --rich-navy: #0A1931;
  --metallic-gold: #C9A96D;
  --pearl-white: #F8F8F8;
  --silver: #C0C0C0;
  --dark-gray: #2D2D2D;
  
  /* Fonts */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Montserrat', sans-serif;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 0 1.5rem;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  background-color: var(--deep-charcoal);
  color: var(--pearl-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--metallic-gold);
}

h3 {
  font-size: 1.75rem;
  color: var(--pearl-white);
}

p {
  margin-bottom: 1rem;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: var(--pearl-white);
  transition: var(--transition-fast);
}

a:hover {
  color: var(--metallic-gold);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto;
}

/* Header & Navigation */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.video-background, .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 25, 49, 0.7) 0%, rgba(10, 25, 49, 0.9) 100%);
  z-index: -1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem var(--container-padding);
  position: relative;
  z-index: 10;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pearl-white);
}

.logo:before {
  content: "S";
  color: var(--metallic-gold);
  margin-right: 0.2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: 1.1rem;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--metallic-gold);
  transition: var(--transition-fast);
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--pearl-white);
  margin: 3px 0;
  transition: var(--transition-fast);
}

/* Hero Content */
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding: 0 1rem;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 700px;
  color: var(--silver);
}

/* Buttons */
.cta-button {
  display: inline-block;
  background: var(--metallic-gold);
  color: var(--rich-navy);
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  border: 2px solid var(--metallic-gold);
}

.cta-button:hover {
  background: transparent;
  color: var(--metallic-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
  background: transparent;
  color: var(--metallic-gold);
}

.cta-button.secondary:hover {
  background: var(--metallic-gold);
  color: var(--rich-navy);
}

/* Features Section */
.features {
  padding: var(--section-padding);
  background-color: var(--rich-navy);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 5px;
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid rgba(201, 169, 109, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 109, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--silver);
}

/* How It Works Section */
.how-it-works {
  padding: var(--section-padding);
  background-color: var(--deep-charcoal);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step-counter;
}

.step {
  position: relative;
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 5px;
  transition: var(--transition-medium);
}

.step:hover {
  background: rgba(201, 169, 109, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--metallic-gold);
  color: var(--rich-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background: linear-gradient(rgba(10, 25, 49, 0.9), rgba(10, 25, 49, 0.9)), url('img/photo-1640184713822-174b6e94df51.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--silver);
}

/* Map Section */
.map-section {
  padding: var(--section-padding);
  background-color: var(--rich-navy);
}

.map-container {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: var(--dark-gray);
  border-radius: 5px;
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gate-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--metallic-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 0 0 0 rgba(201, 169, 109, 0.7);
  animation: pulse 2s infinite;
}

.gate-marker:hover {
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 10;
}

.gate-marker:hover .marker-info {
  display: block;
}

.marker-info {
  display: none;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rich-navy);
  padding: 1rem;
  border-radius: 5px;
  width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.marker-info h4 {
  color: var(--metallic-gold);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.marker-info p {
  font-size: 0.85rem;
  color: var(--silver);
  margin: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 169, 109, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(201, 169, 109, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 109, 0);
  }
}

/* Gates List Section */
.gates-list {
  padding: var(--section-padding);
  background-color: var(--deep-charcoal);
}

.gates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gate-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  padding: 2rem;
  transition: var(--transition-medium);
  border: 1px solid rgba(201, 169, 109, 0.1);
}

.gate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 169, 109, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gate-location h3 {
  color: var(--metallic-gold);
  margin-bottom: 0.5rem;
}

.gate-location p {
  color: var(--silver);
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
  border-bottom: none;
}

.label {
  color: var(--silver);
}

.value {
  color: var(--pearl-white);
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background-color: var(--rich-navy);
}

.contact-content {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 5px;
  transition: var(--transition-medium);
  border-left: 3px solid var(--metallic-gold);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  color: var(--metallic-gold);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--silver);
  margin-bottom: 0.3rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 5px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--pearl-white);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 169, 109, 0.3);
  border-radius: 3px;
  color: var(--pearl-white);
  font-family: var(--body-font);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--metallic-gold);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Map Section */
.map-section {
  padding: var(--section-padding);
  background-color: var(--deep-charcoal);
}

.map-container {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: var(--dark-gray);
  border-radius: 5px;
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: var(--metallic-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.map-marker:hover .marker-info {
  display: block;
}

.marker-info {
  display: none;
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rich-navy);
  padding: 1rem;
  border-radius: 5px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.marker-info h4 {
  color: var(--metallic-gold);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.marker-info p {
  font-size: 0.85rem;
  color: var(--silver);
  margin: 0;
}

/* FAQ Section */
.faq {
  padding: var(--section-padding);
  background-color: var(--rich-navy);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-question {
  border-bottom: 1px solid rgba(201, 169, 109, 0.3);
}

.faq-question h3 {
  margin: 0;
  color: var(--pearl-white);
  font-size: 1.2rem;
}

.faq-toggle {
  width: 25px;
  height: 25px;
  position: relative;
}

.faq-toggle .minus {
  display: none;
}

.faq-item.active .faq-toggle .plus {
  display: none;
}

.faq-item.active .faq-toggle .minus {
  display: block;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: var(--silver);
  margin: 0;
}

/* Planning Tips Section */
.planning-tips {
  padding: var(--section-padding);
  background-color: var(--rich-navy);
}

.tips-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tip-card {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 5px;
  transition: var(--transition-medium);
  border-left: 3px solid var(--metallic-gold);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tip-icon {
  flex-shrink: 0;
}

.tip-card h3 {
  margin-bottom: 0.5rem;
  color: var(--pearl-white);
}

.tip-card p {
  color: var(--silver);
  margin: 0;
}

/* Technology Section */
technology {
  padding: var(--section-padding);
  background-color: var(--rich-navy);
}

.tech-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.tech-image {
  flex: 1;
  min-width: 300px;
}

.tech-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-info {
  flex: 1;
  min-width: 300px;
}

.tech-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tech-feature {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  border-left: 3px solid var(--metallic-gold);
}

.tech-feature h4 {
  color: var(--metallic-gold);
  margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
  padding: var(--section-padding);
  background-color: var(--deep-charcoal);
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  overflow: hidden;
  transition: var(--transition-medium);
  border: 1px solid rgba(201, 169, 109, 0.1);
}

.pricing-table:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 109, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.table-header {
  background: var(--rich-navy);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 109, 0.1);
}

.table-header h3 {
  color: var(--metallic-gold);
  margin-bottom: 0.5rem;
}

.table-header p {
  color: var(--silver);
  margin: 0;
}

.table-body {
  padding: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row.highlight {
  background: rgba(201, 169, 109, 0.1);
  padding: 1rem;
  border-radius: 3px;
  margin: 0.5rem 0;
}

.service {
  color: var(--pearl-white);
}

.price {
  color: var(--metallic-gold);
  font-weight: 500;
}

/* Penalties Section */
.penalties {
  padding: var(--section-padding);
  background-color: var(--rich-navy);
}

.penalty-table {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  overflow: hidden;
}

.penalty-row {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.penalty-row:last-child {
  border-bottom: none;
}

.penalty-name {
  color: var(--pearl-white);
}

.penalty-fee {
  color: var(--metallic-gold);
  font-weight: 500;
}

/* Payment Methods Section */
.payment-methods {
  padding: var(--section-padding);
  background-color: var(--deep-charcoal);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.payment-option {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 5px;
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid rgba(201, 169, 109, 0.1);
}

.payment-option:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 109, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.payment-icon {
  margin-bottom: 1.5rem;
}

.payment-option h3 {
  margin-bottom: 1rem;
}

.payment-option p {
  color: var(--silver);
}

/* Account Management Section */
.account-management {
  padding: var(--section-padding);
  background-color: var(--rich-navy);
}

.management-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.management-info {
  flex: 1;
  min-width: 300px;
}

.management-image {
  flex: 1;
  min-width: 300px;
}

.management-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-points {
  margin-top: 2rem;
}

.info-point {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--metallic-gold);
}

.info-point h4 {
  color: var(--metallic-gold);
  margin-bottom: 0.5rem;
}

.info-point p {
  color: var(--silver);
  margin: 0;
}

/* Benefits Section */
.benefits {
  padding: var(--section-padding);
  background-color: var(--deep-charcoal);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 5px;
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid rgba(201, 169, 109, 0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 109, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--silver);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-info {
  flex: 1;
  min-width: 300px;
}

.footer-info .logo {
  margin-bottom: 1.5rem;
}

.address {
  color: var(--silver);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.link-column h4 {
  color: var(--metallic-gold);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.link-column h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--metallic-gold);
}

.link-column ul li {
  margin-bottom: 0.8rem;
}

.link-column ul li a {
  color: var(--silver);
  transition: var(--transition-fast);
}

.link-column ul li a:hover {
  color: var(--metallic-gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(192, 192, 192, 0.1);
  color: var(--silver);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-text h1 {
    font-size: 3.2rem;
  }
  
  .hero-text p {
    font-size: 1.3rem;
  }
  
  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: var(--rich-navy);
    width: 70%;
    height: 100vh;
    padding: 8rem 2rem;
    transition: var(--transition-medium);
    z-index: 100;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .hamburger {
    display: flex;
    z-index: 101;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .footer-links {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h2:after {
    width: 50px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .link-column {
    min-width: 120px;
  }
}