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

body {
  font-family: 'Lora', serif;
  background-color: #f5f0e8;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Accessibility Styles */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Navigation Bar */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: #333;
  text-decoration: none;
}

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

.nav-links a {
  font-family: 'Lora', serif;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #4A90E2;
}

.nav-cta {
  background-color: #4A90E2;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Lora', serif;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background-color: #357abd;
}

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

/* Header Section */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.badge {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.company-branding {
  flex-grow: 1;
  text-align: center;
  margin: 0 20px;
}

.company-name {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  color: #333;
  margin: 0;
  line-height: 1;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #4A90E2;
  text-transform: uppercase;
  font-weight: 400;
  margin: 5px 0 0 0;
}

.offer-badge {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #8B4513;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-description {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.social-proof {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Services Section Header */
.services-header {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 15px;
  font-weight: 400;
  text-align: center;
}

.services-subheader {
  font-family: 'Lora', serif;
  font-size: 1rem;
  margin-bottom: 30px;
  text-align: center;
}

/* Services Grid */
.services {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* Special Offer Section */
.special-offer {
  text-align: center;
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
}

.offer-container {
  max-width: 600px;
  margin: 0 auto;
}

.offer-badge-large {
  background: #4A90E2;
  color: white;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 15px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 20px;
  font-weight: 400;
}

.offer-price {
  margin-bottom: 20px;
}

.offer-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #4A90E2;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.offer-details {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

.offer-description {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.offer-features {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.offer-feature {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  display: block;
}

.offer-feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A90E2;
  font-weight: bold;
}

.offer-button {
  background: #4A90E2;
  color: white;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.offer-button:hover {
  background: #357abd;
}

.offer-urgency {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.service-arrow {
  width: 60px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.service-card {
  background: white;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  width: 280px;
  height: 320px;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 4px;
  flex-shrink: 0;
}

.service-image-container {
  position: relative;
  margin-bottom: 15px;
  width: 100%;
  height: 200px;
}

.service-image-container .service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.play-button:focus {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
}

.play-button::after {
  content: '▶';
  font-size: 20px;
  color: #333;
  margin-left: 3px;
}

.service-title {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
  margin-top: auto;
}

/* Experience Section */
.experience {
  margin-bottom: 40px;
}

.experience h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 15px;
  font-weight: 400;
  text-align: center;
}

.experience p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}

.experience-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.frame-demo {
  flex: 1;
  text-align: center;
}

.digital-frame-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Features List */
.features {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.features li {
  font-family: 'Lora', serif;
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8B4513;
  font-size: 16px;
}


/* CTA Section */
.cta {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 400;
}

.cta p {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-info {
  font-family: 'Lora', serif;
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info a {
  color: #4A90E2;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.website-url {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #4A90E2;
  text-decoration: none;
}

.website-url:hover {
  text-decoration: underline;
}

/* Explainer Video Section */
.explainer-video {
  text-align: center;
  margin-bottom: 40px;
}

.explainer-video h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 20px;
  font-weight: 400;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Pricing Section */
.pricing {
  text-align: center;
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
}

.pricing h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 30px;
  font-weight: 400;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.pricing h3 {
  grid-column: 1 / -1;
}

.pricing-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #4A90E2;
  font-weight: 700;
  margin-bottom: 5px;
}

.price-qualifier {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: #8B4513;
  font-style: italic;
  margin-bottom: 15px;
}

.price-description {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-features li {
  font-family: 'Lora', serif;
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A90E2;
  font-weight: bold;
}

.additional-features {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.additional-features h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #8B4513;
  margin-bottom: 15px;
  font-weight: 600;
}

.additional-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.additional-features li {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  line-height: 1.4;
}

.additional-features li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #8B4513;
  font-weight: bold;
}

.feature-price {
  color: #4A90E2;
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #4A90E2;
}

.footer-section p,
.footer-section a {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ccc;
  text-decoration: none;
}

.footer-section a[href^="tel:"],
.footer-section a[href^="mailto:"] {
  color: #4A90E2;
}

.footer-section a:hover {
  color: #4A90E2;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #555;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-logo {
    font-size: 1.4rem;
  }

  .header {
    flex-direction: column;
    gap: 15px;
    position: relative;
  }

  .badge,
  .offer-badge {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
  }

  .badge {
    left: 20px;
  }

  .offer-badge {
    right: 20px;
  }

  .company-branding {
    margin-top: 80px;
  }

  .company-name {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .hero {
    flex-direction: column;
    gap: 20px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .services {
    flex-direction: column;
    gap: 15px;
  }

  .service-arrow {
    display: none;
  }

  .experience-content {
    flex-direction: column;
    gap: 20px;
  }

  .cta {
    padding: 20px;
  }

  .pricing {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price {
    font-size: 2.5rem;
  }

  .service-card {
    width: 100%;
    max-width: 280px;
    height: auto;
    min-height: 320px;
  }

  .service-image,
  .service-image-container {
    height: 200px;
  }

  /* Special Offer Mobile Styles */
  .special-offer {
    padding: 20px;
  }

  .offer-title {
    font-size: 1.8rem;
  }

  .offer-amount {
    font-size: 2.5rem;
  }

  .offer-details {
    font-size: 1rem;
  }

  .offer-button {
    font-size: 1rem;
    padding: 10px 25px;
  }
}