* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f7fb;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #1f2933;
  text-decoration: none;
}

/* Navigation */
.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #1f2933;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #2563eb;
}

/* Button */
.btn {
  padding: 10px 18px;
  background: #2563eb;
  color: #fff !important;
  border-radius: 6px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #1f2933;
  transition: all 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .nav.active {
    display: block;
  }
}

.hero {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Content */
.hero-content .badge {
  display: inline-block;
  background: #e0e7ff;
  color: #1d4ed8;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #2563eb;
}

.hero-content p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
  max-width: 520px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #2563eb;
  color: #fff;
}

/* Features */
.hero-features {
  display: flex;
  gap: 25px;
  font-size: 14px;
  color: #334155;
}

/* Image */
.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 420px;
  animation: float 4s ease-in-out infinite;
}

/* Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: auto auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.products {
  padding: 80px 20px;
  background: #f8fafc;
}

.products-container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #0f172a;
}

.section-title p {
  color: #64748b;
  margin-top: 10px;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
}

/* Badge */
.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #2563eb;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

.badge.green { background: #16a34a; }
.badge.blue { background: #0ea5e9; }

/* Image */
.product-card img {
  max-width: 110px;
  margin-bottom: 20px;
}

/* Title */
.product-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Rating */
.rating {
  font-size: 14px;
  color: #f59e0b;
  margin-bottom: 15px;
}

.rating span {
  color: #64748b;
}

/* Features */
.features {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
}

/* Price */
.price {
  margin-bottom: 20px;
}

.price .old {
  text-decoration: line-through;
  color: #94a3b8;
  margin-right: 8px;
}

.price .new {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
}

/* Button */
.btn-buy {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-buy:hover {
  background: #1d4ed8;
}

.testimonials {
  padding: 80px 20px;
  background: #ffffff;
}

.testimonials-container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #0f172a;
}

.section-title p {
  color: #64748b;
  margin-top: 10px;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user img,
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.user h4 {
  font-size: 16px;
  color: #0f172a;
}

.user span {
  font-size: 12px;
  color: #16a34a;
}

/* Stars */
.stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Text */
.testimonial-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }
}

.disclaimer-full {
  width: 100%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 70px 20px;
  color: #e5e7eb;
}

.disclaimer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

/* Icon */
.disclaimer-icon {
  font-size: 48px;
  line-height: 1;
  color: #fbbf24;
  flex-shrink: 0;
}

/* Content */
.disclaimer-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffffff;
}

.disclaimer-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #d1d5db;
}

.disclaimer-content strong {
  color: #fbbf24;
}

.disclaimer-content a {
  color: #60a5fa;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-inner {
    flex-direction: column;
    text-align: center;
  }

  .disclaimer-icon {
    margin-bottom: 10px;
  }

  .disclaimer-content h2 {
    font-size: 24px;
  }
}

.footer {
  background: #020617;
  color: #e5e7eb;
  padding-top: 70px;
}

/* Layout */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Brand */
.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #9ca3af;
}

/* Headings */
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #9ca3af;
}

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #60a5fa;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

.footer-bottom span {
  display: block;
  margin-top: 5px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }
}

.product-page {
  padding: 90px 20px;
  background: #f8fafc;
}

.product-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Gallery */
.product-gallery {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.product-gallery img {
  max-width: 320px;
}

/* Info */
.product-badge {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}

.product-info h1 {
  font-size: 40px;
  color: #0f172a;
  margin-bottom: 10px;
}

.product-rating {
  font-size: 15px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.product-rating span {
  color: #64748b;
}

/* Description */
.product-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Price */
.product-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.product-price .old {
  text-decoration: line-through;
  color: #94a3b8;
}

.product-price .new {
  font-size: 32px;
  font-weight: 700;
  color: #2563eb;
}

.product-price .tax {
  font-size: 14px;
  color: #16a34a;
}

/* Features */
.product-features {
  list-style: none;
  margin-bottom: 30px;
}

.product-features li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
}

/* Actions */
.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.btn-buy-now {
  background: #2563eb;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn-cart {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn-buy-now:hover {
  background: #1d4ed8;
}

.btn-cart:hover {
  background: #2563eb;
  color: #ffffff;
}

/* Trust */
.product-trust {
  font-size: 14px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-price {
    justify-content: center;
  }
}

.product-description {
  padding: 80px 20px;
  background: #ffffff;
}

.description-container {
  max-width: 900px;
  margin: auto;
}

.product-description h2 {
  font-size: 34px;
  color: #0f172a;
  margin-bottom: 25px;
  text-align: center;
}

.product-description p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-description h2 {
    font-size: 26px;
  }

  .product-description p {
    font-size: 15px;
  }
}

.about-us {
  padding: 80px 20px;
  background: #f8fafc;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 15px;
}

.btn-about {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s ease;
}

.btn-about:hover {
  background: #1d4ed8;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    max-width: 250px;
  }
}

.terms-conditions {
  padding: 60px 20px;
  background: #f8fafc;
}

.terms-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.terms-container h1 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 30px;
  text-align: center;
}

.terms-container h2 {
  font-size: 24px;
  color: #1e293b;
  margin-top: 25px;
  margin-bottom: 15px;
}

.terms-container p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 15px;
}

.terms-container a {
  color: #2563eb;
  text-decoration: none;
}

.terms-container a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-container {
    padding: 25px;
  }

  .terms-container h1 {
    font-size: 28px;
  }

  .terms-container h2 {
    font-size: 20px;
  }

  .terms-container p {
    font-size: 15px;
  }
}

.privacy-policy {
  padding: 60px 20px;
  background: #f8fafc;
}

.disclaimer {
  padding: 60px 20px;
  background: #f8fafc;
}

.refund-policy {
  padding: 60px 20px;
  background: #f8fafc;
}

.contact-us {
  padding: 80px 20px;
  background: #f8fafc;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #334155;
}

.contact-info ul li a {
  color: #2563eb;
  text-decoration: none;
}

.contact-info ul li a:hover {
  text-decoration: underline;
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #1e293b;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 16px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
}

.btn-submit {
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: #1d4ed8;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info h2 {
    font-size: 28px;
  }
}


/* ===============================
   Office Showcase – Unique Styles
================================= */

.office-showcase {
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
  padding: 80px 20px;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.office-wrap {
  max-width: 1200px;
  margin: auto;
}

.office-header {
  text-align: center;
  margin-bottom: 50px;
}

.office-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
}

.office-header p {
  font-size: 16px;
  color: #475569;
  max-width: 620px;
  margin: 12px auto 0;
}

/* ===============================
   Product Grid
================================= */

.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ===============================
   Product Card
================================= */

.office-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 22px 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.14);
}

.office-card img {
  width: 64px;
  margin-bottom: 18px;
}

/* ===============================
   Badges
================================= */

.office-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  color: #fff;
}

.tag-best { background: #2563eb; }
.tag-popular { background: #16a34a; }
.tag-business { background: #9333ea; }
.tag-lifetime { background: #0f766e; }
.tag-mac { background: #334155; }
.tag-family { background: #ea580c; }
.tag-student { background: #0284c7; }
.tag-enterprise { background: #b91c1c; }

/* ===============================
   Card Content
================================= */

.office-card h3 {
  font-size: 20px;
  color: #020617;
  margin-bottom: 10px;
}

.office-rating {
  font-size: 14px;
  color: #f59e0b;
  margin-bottom: 12px;
}

.office-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ===============================
   Pricing
================================= */

.office-price {
  margin-bottom: 20px;
}

.office-price del {
  font-size: 14px;
  color: #94a3b8;
  margin-right: 8px;
}

.office-price strong {
  font-size: 22px;
  color: #16a34a;
}

/* ===============================
   CTA Button
================================= */

.office-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.office-btn:hover {
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

/* ===============================
   Responsive Tweaks
================================= */

@media (max-width: 600px) {
  .office-header h2 {
    font-size: 28px;
  }
}


/* ==================================
   Hero Prime – Unique Hero Styles
================================== */

.ms-hero-prime {
  background: radial-gradient(circle at top left, #1e40af, #020617);
  padding: 90px 20px;
  color: #ffffff;
  font-family: "Segoe UI", system-ui, sans-serif;
  overflow: hidden;
}

.ms-hero-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* ==================================
   Left Content
================================== */

.ms-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ms-hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.ms-hero-title span {
  color: #38bdf8;
}

.ms-hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: #e5e7eb;
  max-width: 520px;
  margin-bottom: 32px;
}

/* ==================================
   CTA Buttons
================================== */

.ms-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.ms-btn-main {
  padding: 14px 30px;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #020617;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ms-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.45);
}

.ms-btn-outline {
  padding: 14px 30px;
  border: 2px solid rgba(255,255,255,0.5);
  color: #ffffff;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ms-btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

/* ==================================
   Trust Highlights
================================== */

.ms-hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.ms-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #dbeafe;
}

.ms-trust-item span {
  font-size: 18px;
}

/* ==================================
   Right Visual
================================== */

.ms-hero-visual {
  position: relative;
  text-align: center;
}

.ms-hero-visual::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 65%);
  z-index: 0;
}

.ms-hero-visual img {
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* ==================================
   Responsive Design
================================== */

@media (max-width: 900px) {
  .ms-hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ms-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .ms-hero-actions,
  .ms-hero-trust {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .ms-hero-title {
    font-size: 34px;
  }
}


/* ===============================
   Why Choose Us – msstorecart
================================ */

.ms-why-section {
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
  padding: 80px 20px;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.ms-why-container {
  max-width: 1200px;
  margin: auto;
}

.ms-why-header {
  text-align: center;
  margin-bottom: 55px;
}

.ms-why-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}

.ms-why-header p {
  font-size: 16px;
  color: #475569;
  max-width: 640px;
  margin: 12px auto 0;
}

/* ===============================
   Feature Grid
================================ */

.ms-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ===============================
   Feature Card
================================ */

.ms-why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  text-align: left;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ms-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ms-why-card:hover::before {
  opacity: 1;
}

.ms-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.14);
}

/* ===============================
   Icon Style
================================ */

.ms-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #020617;
  margin-bottom: 20px;
}

/* ===============================
   Text Content
================================ */

.ms-why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #020617;
  margin-bottom: 10px;
}

.ms-why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 600px) {
  .ms-why-header h2 {
    font-size: 28px;
  }
}


/* ===============================
   FAQ Section – msstorecart
================================ */

.ms-faq-section {
  background: #f8fafc;
  padding: 80px 20px;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.ms-faq-container {
  max-width: 900px;
  margin: auto;
}

.ms-faq-header {
  text-align: center;
  margin-bottom: 45px;
}

.ms-faq-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
}

.ms-faq-header p {
  font-size: 16px;
  color: #475569;
  margin-top: 10px;
}

/* ===============================
   FAQ Items
================================ */

.ms-faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.ms-faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #020617;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.ms-faq-question span {
  font-size: 22px;
  color: #2563eb;
  transition: transform 0.3s ease;
}

.ms-faq-item.active .ms-faq-question span {
  transform: rotate(45deg);
}

.ms-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
}

.ms-faq-answer p {
  padding: 0 0 20px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}


/* =====================================
   Legal Disclaimer – Modern Design
===================================== */

.ms-legal-wrap {
  background: linear-gradient(180deg, #fff7ed, #ffffff);
  padding: 60px 20px;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.ms-legal-box {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.ms-legal-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
}

.ms-legal-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 14px;
}

.ms-legal-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 12px;
}

.ms-legal-content a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ms-legal-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ms-legal-icon {
    margin: auto;
  }
}

/* =====================================
   Footer Section
===================================== */

.ms-footer {
  background: #020617;
  color: #cbd5f5;
  padding: 70px 20px 0;
}

.ms-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Footer Columns */

.ms-footer-col h4 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.ms-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ms-footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.ms-footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ms-footer-col ul li a:hover {
  color: #38bdf8;
}

/* Support Column */

.ms-footer-support {
  font-size: 14px;
  color: #94a3b8;
}

.ms-footer-social {
  display: flex;
  gap: 14px;
  margin: 16px 0;
}

.ms-footer-social img {
  width: 22px;
 
}

.ms-footer-social img:hover {
  opacity: 1;
}

/* Payment Image */

.ms-footer-payment img {
  max-width: 160px;
  margin-top: 18px;
}

/* Footer Bottom */

.ms-footer-bottom {
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}

/* =============================
   Microsoft 365 Family – Styles
============================= */

.msf-product-wrapper {
  padding: 80px 20px;
  background: #f6f8fb;
  font-family: "Segoe UI", sans-serif;
}

.msf-product-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* Image */
.msf-image-box {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.msf-image-box img {
  max-width: 220px;
}

/* Details */
.msf-tag {
  display: inline-block;
  background: #e6f0ff;
  color: #0056d2;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.msf-title {
  font-size: 36px;
  margin: 15px 0;
  color: #1f2937;
}

.msf-rating {
  color: #f59e0b;
  margin-bottom: 15px;
}

.msf-summary {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Pricing */
.msf-pricing {
  margin-bottom: 25px;
}

.msf-price-old {
  text-decoration: line-through;
  color: #9ca3af;
  margin-right: 12px;
}

.msf-price-new {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

.msf-price-note {
  display: block;
  color: #2563eb;
  margin-top: 6px;
}

/* Features */
.msf-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.msf-feature-list li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  color: #374151;
}

.msf-feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #10b981;
}

/* Buttons */
.msf-action-group {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.msf-btn-primary,
.msf-btn-secondary {
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.msf-btn-primary {
  background: #2563eb;
  color: #fff;
}

.msf-btn-primary:hover {
  background: #1e40af;
}

.msf-btn-secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.msf-btn-secondary:hover {
  background: #e6f0ff;
}

/* Trust */
.msf-trust-bar {
  font-size: 14px;
  color: #6b7280;
}

/* Description Section */
.msf-description-section {
  padding: 80px 20px;
  background: #ffffff;
}

.msf-description-container {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  color: #374151;
}

.msf-desc-title {
  font-size: 32px;
  margin-bottom: 25px;
  color: #111827;
}

/* Responsive */
@media (max-width: 900px) {
  .msf-product-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .msf-action-group {
    justify-content: center;
    flex-wrap: wrap;
  }
}
