
:root {
  --bg-gradient-start: #4169e1;
  --bg-gradient-end: #14B8A6;
  --benaan-light: #F9FAFB;
  --light-teal: #6EC4BA;
  --benaan-teal: #14B8A6;
  --benaan-blue: #4169e1;
  --text-gray: #6B7280;
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition-normal: all 0.4s ease;
  --separator-color: rgba(20, 184, 166, 0.2);
}

body {
  font-family: 'Tajawal', sans-serif;
  background: linear-gradient(to bottom, #fff, var(--benaan-light));
  margin: 0;
  padding: 0;
  color: var(--text-gray);
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
}

.mixed-text {
  unicode-bidi: plaintext;
  font-size: 1.2rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-hero {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  margin-bottom: 2rem;
  
  &::before {
    content: '';
    position: absolute;
    top: -70px;
    left: -70px;
    width: 250px;
    height: 250px;
    background: rgba(30, 58, 138, 0.25);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 5s infinite ease-in-out;
  }

  &::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(20, 184, 166, 0.25);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    z-index: 0;
    animation: rotate 8s infinite linear;
  }

}

.service-hero-content {
  padding: 2rem;
}

.hero-title {
  font-size: 2.8rem;
  color: var(--benaan-blue);
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-align: right;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: right;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.tools-list li {
  width: 33.33%;
  font-size: 1.1rem;
  color: var(--text-gray);
  padding: 0.5rem;
  text-align: right;
}

.service-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  animation: fadeInLeft 1s ease-out;
}

.btn-hero {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(45deg, var(--benaan-teal), var(--benaan-blue));
  text-decoration: none;
  border-radius: 30px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  text-align: center;
}

.btn-hero:hover {
  background: var(--benaan-blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
  .service-hero {
    padding: 3rem 1.5rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .tools-list li {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 2rem 1rem;
    margin-top: 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .tools-list li {
    width: 100%;
  }

  .service-hero-image {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 1.5rem 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-hero {
    padding: 10px 20px;
    font-size: 1rem;
  }
}




.service-description {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #fff, var(--benaan-light));
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  direction: rtl;
}

.section-title {
  font-size: 2.5rem;
  color: var(--benaan-blue);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out;
}

.custom-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--separator-color), transparent);
  margin: 2rem 0;
  position: relative;
}

.custom-separator::before,
.custom-separator::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--benaan-teal);
  border-radius: 50%;
  top: -6px;
  transform: translateY(-50%);
}

.custom-separator::before {
  left: 20%;
}

.custom-separator::after {
  right: 20%;
}

.question {
  font-size: 1.8rem;
  color: var(--benaan-blue);
  margin-bottom: 1rem;
  text-align: right;
  font-weight: 600;
}

.mixed-text {
  unicode-bidi: plaintext;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: right;
}

.video-section {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #f0f0f0;
  margin: 1rem 0;
}

.video-section .video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.video-section:hover .video-player {
  transform: scale(1.02);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 166, 0.1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--benaan-teal);
}

.service-icon {
  font-size: 2rem;
  color: var(--benaan-teal);
  margin-bottom: 1rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  color: var(--benaan-blue);
  transform: rotate(10deg);
}

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--benaan-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
  flex-grow: 1;
}

.btn-service {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, var(--benaan-teal), var(--benaan-blue));
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
  text-align: center;
}

.btn-service:hover {
  background: var(--benaan-blue);
  box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .service-description {
    padding: 2rem 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .question {
    font-size: 1.6rem;
  }

  .mixed-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .service-description {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .question {
    font-size: 1.4rem;
  }

  .mixed-text {
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .video-section {
    padding-top: 75%;
  }
}

@media (max-width: 480px) {
  .service-description {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .question {
    font-size: 1.2rem;
  }

  .mixed-text {
    font-size: 0.9rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .btn-service {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .video-section {
    padding-top: 100%;
  }
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 166, 0.1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--benaan-teal);
}

.service-icon {
  font-size: 2rem;
  color: var(--benaan-teal);
  margin-bottom: 1rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  color: var(--benaan-blue);
  transform: rotate(10deg);
}

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--benaan-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
  flex-grow: 1;
  unicode-bidi: plaintext;
  line-height: 1.6;
}

.btn-service {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, var(--benaan-teal), var(--benaan-blue));
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
  text-align: center;
}

.btn-service:hover {
  background: var(--benaan-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .btn-service {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .btn-service {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}




.why-choose-us {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
  direction: rtl;
  .section-title {
  font-size: 2.5rem;
  color: #fff  !important;
  margin-bottom: 0.1rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
}



.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 166, 0.1);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--benaan-teal);
}

.feature-icon {
  font-size: 2rem;
  color: var(--benaan-teal);
  margin-bottom: 1rem;
  transition: var(--transition-normal);
}

.feature:hover .feature-icon {
  color: var(--benaan-blue);
  transform: rotate(10deg);
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature h3 {
  font-size: 1.5rem;
  color: var(--benaan-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.feature p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
  flex-grow: 1;
  unicode-bidi: plaintext;
  line-height: 1.6;
}

.btn-feature {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, var(--benaan-teal), var(--benaan-blue));
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
  text-align: center;
}

.btn-feature:hover {
  background: var(--benaan-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature h3 {
    font-size: 1.3rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  .btn-feature {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .features-grid {
    gap: 1rem;
  }

  .feature {
    padding: 1rem;
  }

  .feature h3 {
    font-size: 1.2rem;
  }

  .feature p {
    font-size: 0.85rem;
  }

  .btn-feature {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}


.tools-we-use {
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  direction: rtl;
  .section-title {
  font-size: 2.5rem;
  color: var(--benaan-blue);
  text-align: center;
  font-weight: 700;
  animation: fadeInUp 1s ease-out;
  margin-bottom: 0 !important;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  unicode-bidi: plaintext;
  line-height: 1.6;
}
}



.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.tool-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 166, 0.1);
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--benaan-teal);
}

.tool-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  margin: 1rem auto;
  transition: transform 0.3s ease;
}

.tool-card:hover .tool-image {
  transform: scale(1.1);
}

.tool-name {
  font-size: 1.5rem;
  color: var(--benaan-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.tool-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
  flex-grow: 1;
  unicode-bidi: plaintext;
  line-height: 1.6;
}

.btn-tool {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, var(--benaan-teal), var(--benaan-blue));
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
  text-align: center;
}

.btn-tool:hover {
  background: var(--benaan-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tools-we-use {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1.1rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-name {
    font-size: 1.3rem;
  }

  .tool-description {
    font-size: 0.9rem;
  }

  .btn-tool {
    padding: 8px 16px;
    font-size: 0.95rem;
  }

  .tool-image {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .tools-we-use {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .tools-grid {
    gap: 1rem;
  }

  .tool-card {
    padding: 1rem;
  }

  .tool-name {
    font-size: 1.2rem;
  }

  .tool-description {
    font-size: 0.85rem;
  }

  .btn-tool {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .tool-image {
    max-width: 100px;
  }
}


.related-articles {
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  direction: rtl;
}

.cta {
  padding: 3rem 2rem;
  background: var(--benaan-teal);
  color: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  direction: rtl;
    .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* center text & button horizontally */
    gap: 1.5rem; /* space between text and button */
  }

  .section-title {
    font-size: 2.5rem;
    color: var(--benaan-blue);
    font-weight: 700;
    margin: 0;
  }

  .section-title {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  .btn{
    border: none;
  }
}



.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.article-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 184, 166, 0.1);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--benaan-teal);
}

.article-image {
  margin-bottom: 1rem;
}

.article-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-content h3 {
  font-size: 1.5rem;
  color: var(--benaan-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.article-content p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
  flex-grow: 1;
  unicode-bidi: plaintext;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: var(--benaan-blue);
  text-decoration: none;
  background: rgba(65, 105, 225, 0.1);
  border-radius: 20px;
  transition: var(--transition-normal);
  margin-top: 1rem;
}

.read-more:hover {
  color: var(--benaan-teal);
  transform: translateY(-3px);
  background: rgba(20, 184, 166, 0.1);
}

.view-all-articles {
  text-align: center;
  margin-top: 2rem;
}

.btn-sell-all {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, var(--benaan-teal), var(--benaan-blue));
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.btn-sell-all:hover {
  background: var(--benaan-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta p {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 2rem;
  unicode-bidi: plaintext;
  line-height: 1.6;
}

.btn-large {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(45deg, var(--benaan-teal), var(--benaan-blue));
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.btn-large:hover {
  background: var(--benaan-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .related-articles,
  .cta {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1.1rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-content h3 {
    font-size: 1.3rem;
  }

  .article-content p {
    font-size: 0.9rem;
  }

  .read-more {
    padding: 8px 16px;
    font-size: 0.95rem;
  }

  .btn-sell-all {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 10px 24px;
    font-size: 1.1rem;
  }

  .article-image img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .related-articles,
  .cta {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .articles-grid {
    gap: 1rem;
  }

  .article-card {
    padding: 1rem;
  }

  .article-content h3 {
    font-size: 1.2rem;
  }

  .article-content p {
    font-size: 0.85rem;
  }

  .read-more {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .btn-sell-all {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 8px 20px;
    font-size: 1rem;
  }

  .article-image img {
    height: 140px;
  }
}
.container{
  justify-content: center! important;
}



