:root {
  --primary-color: #1b3d6d;
  --primary-light: #2b5d9b;
  --primary-dark: #0f2441;
  --accent-color: #ff6b35;
  --text-color: #1b3d6d;
  --text-light: #4a5568;
  --background: #f8fafc;
  --white: #ffffff;
  --secondary-color: #4caf50;
  --light-gray: #f5f5f5;
  --title-color: #333;
  --bg-color: #f8fafc;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--background);
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation Styles */
.main-nav {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  height: 32px;
  margin-right: 8px;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a.active {
  color: var(--accent-color);
}

.nav-links a.active:hover {
  color: var(--accent-color);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.login-btn {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s ease;
}

.login-btn:hover {
  color: var(--primary-color);
}

.signup-btn {
  text-decoration: none;
  background: var(--accent-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.signup-btn:hover {
  background: #e85a24;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .nav-content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding-top: 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    height: 100vh;
  }

  .nav-content.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
  }

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

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 0.5rem;
    font-size: 1.1rem;
  }

  .auth-buttons {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0 1rem;
  }

  .signup-btn {
    width: 100%;
    text-align: center;
  }
}

/* Hero Section */
.hero {
  background: var(--white);
  padding: 160px 0 80px;
  text-align: left;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: #e85a24;
  transform: translateY(-2px);
}

.trust-badge {
  background: #f1f5f9;
  padding: 1.5rem;
  border-radius: 12px;
  font-size: 0.875rem;
}

.trust-badge p {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.stats {
  display: flex;
  gap: 2rem;
}

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

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(27, 61, 109, 0.15);
}

/* Portfolio Section */
.portfolio {
  background-color: var(--light-gray);
  padding: 80px 0;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 0;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* How It Works Section */
.how-it-works {
  background: var(--primary-color);
  padding: 80px 0;
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.section-description {
  font-size: 1.125rem;
  color: var(--white);
  opacity: 0.8;
  line-height: 1.6;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon i {
  font-size: 32px;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.step-card .primary-text {
  font-size: 1rem;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.step-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.5;
}

.step-card .secondary-text {
  font-size: 0.875rem;
  color: var(--white);
  opacity: 0.7;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.pricing h2 {
  font-size: 3.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  background: #f8fafc;
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 100px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2e8f0;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.savings {
  color: #10b981;
  font-size: 0.875rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.pricing-card .subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.pricing-card .price-container {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.pricing-card .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1;
  order: 1;
}

.pricing-card .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--title-color);
  order: 2;
}

.pricing-card .period {
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap;
  margin-left: 0.5rem;
  order: 3;
}

.pricing-card .features {
  margin: 2rem 0;
  flex-grow: 1;
  text-align: left;
}

.pricing-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #4a5568;
  padding-right: 1rem;
}

.pricing-card .features i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pricing-card .features span {
  line-height: 1.4;
  text-align: left;
}

.pricing-card.pro {
  background: var(--primary-color);
  color: var(--white);
}

.pricing-card.pro h3,
.pricing-card.pro .currency,
.pricing-card.pro .amount,
.pricing-card.pro .period,
.pricing-card.pro .features li {
  color: var(--white);
}

.pricing-card.pro .features i {
  color: #4caf50;
}

.pricing-card .cta-button {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.pricing-button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  margin-top: 2rem;
  transition: background-color 0.2s ease;
}

.pricing-card.featured .pricing-button {
  background: var(--white);
  color: var(--primary-color);
}

.pricing-button:hover {
  background: var(--primary-dark);
}

.pricing-card.featured .pricing-button:hover {
  background: #f8fafc;
}

.pricing-card.pro .amount,
.pricing-card.pro .period {
  color: var(--white);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing h2 {
    font-size: 2.5rem;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* Blog Section */
.blog {
  padding: 80px 0;
  background-color: var(--white);
}

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

.blog-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

/* Contact Form */
.contact {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .portfolio-grid,
  .steps,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Try Now Section */
.try-now {
  padding: 80px 0;
  background: var(--white);
}

.try-now-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.try-now-form h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.primary-message {
  font-size: 1.125rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.secondary-message {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.try-now-form .cta-button {
  background: var(--accent-color);
  margin-right: 1rem;
}

.create-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.create-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.preview-section {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 2.5rem;
}

.preview-section h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.preview-window {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.preview-image {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 3rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 1rem;
  float: left;
}

.testimonial-content {
  overflow: hidden;
}

.quote {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.author {
  display: flex;
  gap: 0.5rem;
}

.name {
  font-weight: 600;
  color: var(--primary-color);
}

.title {
  color: var(--text-light);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .try-now-form h2 {
    font-size: 2.5rem;
  }

  .preview-section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .try-now-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .try-now-form {
    text-align: center;
  }

  .try-now-form .cta-button,
  .create-button {
    display: block;
    width: 100%;
    margin: 1rem 0;
  }

  .preview-section {
    order: -1;
  }

  .testimonial-avatar {
    float: none;
    margin: 0 auto 1rem;
    display: block;
  }

  .testimonial-content {
    text-align: center;
  }

  .author {
    justify-content: center;
  }
}

/* AI Content Section */
.ai-content {
  padding: 80px 0;
  background: var(--white);
}

.ai-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-preview {
  position: relative;
}

.content-preview h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.preview-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.preview-screen {
  width: 100%;
  height: auto;
  display: block;
}

.cursor-overlay {
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/cursor.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  animation: moveCursor 8s infinite;
}

@keyframes moveCursor {
  0% {
    top: 20%;
    left: 20%;
  }
  25% {
    top: 40%;
    left: 60%;
  }
  50% {
    top: 60%;
    left: 30%;
  }
  75% {
    top: 30%;
    left: 70%;
  }
  100% {
    top: 20%;
    left: 20%;
  }
}

.content-message h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-message .primary-message {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.content-message .secondary-message {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.testimonial {
  margin-top: 3rem;
  background: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
}

.testimonial .quote {
  font-size: 1.125rem;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

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

.author-name {
  font-weight: 600;
  color: var(--primary-color);
}

.author-title {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ai-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-preview {
    order: 2;
  }

  .content-message {
    order: 1;
  }

  .content-message h2 {
    font-size: 2rem;
  }
}

/* Ready to Create Section */
.ready-to-create {
  padding: 80px 0;
  background: var(--white);
}

.ready-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ready-image {
  position: relative;
}

.ready-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ready-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ready-content h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.ready-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .ready-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .ready-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ready-content {
    padding-right: 0;
    text-align: center;
  }

  .ready-image {
    order: -1;
  }
}

/* Business Visibility Section */
.business-visibility {
  padding: 80px 0;
  background: var(--white);
}

.visibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: start;
}

.visibility-preview {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 2rem;
}

.visibility-preview h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.visibility-content h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.visibility-content .primary-message {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.visibility-content .secondary-message {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Testimonial Styles (shared between sections) */
.testimonial {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial .quote {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.author {
  display: flex;
  gap: 0.5rem;
}

.author .name {
  font-weight: 600;
  color: var(--text-color);
}

.author .title {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .try-now-grid,
  .visibility-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .try-now-form h2,
  .visibility-content h2 {
    font-size: 2rem;
  }

  .preview-section {
    order: -1;
  }
}

/* Additional Packs */
.additional-packs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.pack-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pack-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.pack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.pack-items .pack-item:last-child {
  border-bottom: none;
}

.pack-amount {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.pack-type {
  color: var(--text-light);
}

.pack-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0ea5e9;
}

.pack-note {
  margin-top: 1rem;
  color: var(--text-light);
  font-style: italic;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .additional-packs {
    grid-template-columns: 1fr;
  }
}

/* Footer Styles */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 0.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  background: var(--accent-color);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--accent-color-dark);
}

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

.social-icon {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--accent-color);
}

.social-icon {
  font-size: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.app-downloads {
  margin-top: 2rem;
}

.app-button {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.app-button:hover {
  background: #e85a24;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-downloads {
    justify-content: center;
  }

  .footer-logo {
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Features List Styles */
.features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.features-list i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.features-list span {
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    width: 100%;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-badge {
    padding: 1rem;
  }

  .stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .ready-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

/* About Hero Section */
.about-hero {
  padding: 160px 0 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  position: relative;
  margin-top: -1rem;
}

.about-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  margin-top: 2rem;
}

.about-hero .hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  color: white;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 140px 0 60px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
    margin-top: 3rem;
  }

  .about-hero .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 120px 0 40px;
  }

  .about-hero h1 {
    font-size: 1.875rem;
    margin-top: 4rem;
  }

  .about-hero .hero-subtitle {
    font-size: 1rem;
  }

  .about-hero .hero-content {
    padding: 0 1.5rem;
  }
}

/* About page sections spacing */
.about-mission {
  padding: 80px 0;
  background: var(--white);
}

.about-vision {
  padding: 80px 0;
  background: var(--light-gray);
}

.about-features {
  padding: 80px 0;
  background: var(--white);
}

.about-mission-statement {
  padding: 80px 0;
  background: var(--light-gray);
}

.ready-to-create {
  padding: 80px 0;
  background: var(--white);
}

/* Alternating backgrounds for visual separation */
.about-mission + .about-vision,
.about-features + .about-mission-statement {
  margin-top: 0;
}

/* Consistent container widths */
.about-mission .container,
.about-vision .container,
.about-features .container,
.about-mission-statement .container,
.ready-to-create .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .about-hero,
  .about-mission,
  .about-vision,
  .about-features,
  .about-mission-statement,
  .ready-to-create {
    padding: 60px 0;
  }
}

/* About Page Sections */
.about-mission .container,
.about-vision .container,
.about-mission-statement .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-mission h2,
.about-vision h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.about-mission p,
.about-vision p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.about-mission,
.about-vision {
  padding: 6rem 0;
}

.about-vision {
  background-color: var(--light-gray);
}

.about-mission .about-section-grid,
.about-vision .about-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-mission .about-section-content h2,
.about-vision .about-section-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-mission .about-section-content p,
.about-vision .about-section-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.about-mission .about-section-content p:last-child,
.about-vision .about-section-content p:last-child {
  margin-bottom: 0;
}

.about-mission .about-section-image,
.about-vision .about-section-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.about-mission .about-section-image img,
.about-vision .about-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.about-mission .about-section-image:hover img,
.about-vision .about-section-image:hover img {
  transform: scale(1.05);
}

.about-vision .about-section-grid {
  grid-template-columns: 1fr 1fr;
}

.about-mission-statement {
  padding: 6rem 0;
  background: var(--light-gray);
}

.about-mission-statement .about-section-grid {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 4rem;
}

.mission-statement-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-statement-footer p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--primary-color);
  font-weight: 500;
}

@media (max-width: 991px) {
  .mission-statement-footer p {
    font-size: 1.25rem;
  }
}

/* Resources Page Styles */
.resources-hero {
  padding: 160px 0 80px;
}

.resources-hero::before {
  content: none;
}

.resources-hero .container {
  position: relative;
  z-index: 1;
}

.resources-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.resources-hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.resources-hero .hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .resources-hero {
    padding: 60px 0;
  }

  .resources-hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }

  .resources-hero .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .resources-hero {
    padding: 40px 0;
  }

  .resources-hero h1 {
    font-size: 1.875rem;
  }

  .resources-hero .hero-subtitle {
    font-size: 1rem;
  }
}

/* Statistics Section Enhanced */
.stats-section {
  padding: 80px 0;
  background: var(--white);
}

.stats-section h2 {
  text-align: center;
  color: var(--text-color);
  font-size: 2.25rem;
  margin-bottom: 3rem;
  font-weight: 700;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: var(--bg-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.stat-label {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.stat-growth {
  font-size: 0.875rem;
  color: var(--text-light);
}

.market-share {
  margin-top: 4rem;
}

.market-share h3 {
  text-align: center;
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.market-item {
  background: var(--bg-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.flag-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.multi-flags {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.multi-flags .flag-icon {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.market-item i {
  display: none;
}

.market-percent {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.market-region {
  font-size: 1rem;
  color: var(--text-color);
}

/* Sources info for statistics */
.sources-info {
  text-align: right;
  font-size: 0.875rem;
  color: var(--text-color);
  margin-top: 2rem;
  padding-right: 1rem;
  opacity: 0.8;
}

.sources-info a {
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sources-info a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 0;
  }

  .stats-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .market-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-section h2 {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .market-item i {
    font-size: 1.75rem;
  }
}

/* Best Practices Section */
.best-practices {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
}

.best-practices h2 {
  text-align: center;
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.best-practices p {
  text-align: center;
  color: var(--white);
  opacity: 0.9;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.practice-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.practice-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.practice-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}

.card-intro {
  color: var(--white);
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
}

.practice-content {
  width: 100%;
  text-align: left;
}

.practice-content h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

.practice-content h4:first-child {
  margin-top: 0;
}

.practice-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.practice-content ul:last-of-type {
  margin-bottom: 1rem;
}

.practice-content ul li {
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.practice-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.advantage {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.5;
}

.advantage-label {
  color: var(--accent-color);
  font-weight: 600;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .practices-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .practice-card {
    padding: 1.5rem;
  }

  .practice-card h3 {
    font-size: 1.2rem;
  }

  .practice-content h4 {
    font-size: 1.05rem;
  }
}

/* Marketing Tips Section */
.marketing-tips {
  padding: 80px 0;
  background-color: var(--white);
}

.marketing-tips h2 {
  text-align: center;
  color: var(--text-color);
  font-size: 2.25rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 1rem;
}

.tip-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.tip-card h3 {
  color: var(--text-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.tip-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Seasonal Guide Section */
.seasonal-guide {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
}

.seasonal-guide h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.season-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.season-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.season-card ul {
  list-style: none;
  padding: 0;
}

.season-card ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.season-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.events-calendar {
  margin-top: 4rem;
}

.events-calendar h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

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

.event-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.event-date {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.event-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.event-item p {
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .marketing-tips,
  .seasonal-guide {
    padding: 60px 0;
  }

  .marketing-tips h2,
  .seasonal-guide h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .tips-grid,
  .seasons-grid,
  .events-grid {
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .tip-card,
  .season-card,
  .event-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .marketing-tips h2,
  .seasonal-guide h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .tip-card i {
    font-size: 2.5rem;
  }

  .events-calendar h3 {
    font-size: 1.25rem;
  }
}

/* Call to Action Section */
.cta-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 61, 109, 0.03) 0%,
    rgba(43, 93, 155, 0.06) 100%
  );
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 200px;
}

.cta-button.primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(27, 61, 109, 0.15);
}

.cta-button.primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(27, 61, 109, 0.2);
}

.cta-button.secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }

  .cta-section p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/* Features Section */
.about-features {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
}

.about-features .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-features h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.about-features .subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Mission Statement Section */
.about-mission-statement {
  padding: 80px 0;
  background: var(--light-gray);
}

.about-mission-statement .about-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-mission-statement .about-section-content h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-mission-statement .primary-message {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-color);
}

.about-mission-statement .preview-section {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 2.5rem;
}

.about-mission-statement .preview-section h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.about-mission-statement .preview-window {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-mission-statement .preview-image {
  width: 100%;
  height: auto;
  display: block;
}

.mission-statement-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-statement-footer p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--primary-color);
  font-weight: 500;
}

@media (max-width: 991px) {
  .about-section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mission-statement-footer p {
    font-size: 1.25rem;
  }
}
