:root {
    --primary-color: #00FF66;
    --secondary-color: #CFFA7C;
    --dark-color: #121212;
    --darker-color: #0a0a0a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --dark-gray: #343a40;
    --light-gray: #e9ecef;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gilroy', 'Tajawal', sans-serif;
    font-weight: 700; /* Gilroy typically uses 700 for bold */
    line-height: 1.2;
}


a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Header Styles */
/* Wrapper for 12-column layout center alignment */
.header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(85, 186, 93, 0.2);
  transition: all 0.4s ease;
}

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

.logo-container,
.main-nav,
.header-cta {
  flex: 1;
  text-align: center;
}

.logo-container {
  text-align: left;
}

.header-cta {
  text-align: right;
}

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

.logo i {
  margin-right: 10px;
  font-size: 2rem;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
flex-wrap: nowrap;
  white-space: nowrap;


}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  color: var(--light-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.main-nav a:hover:after {
  width: 100%;
}

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

.btn-download {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    outline: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-download:hover {
  background-color: var(--dark-color);
    color: var(--secondary-color);
    /* transform: translateY(-3px); */
    box-shadow: 0 10px 20px rgba(85, 186, 93, 0.3);
    border: 1px solid var(--secondary-color);
    outline: none;
}





.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.header-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 186, 93, 0.1) 0%, transparent 70%);
}

.decoration-circle:nth-child(1) {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
}

.decoration-circle:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: 20%;
}

.decoration-circle:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 30%;
  left: -30px;
}
/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-color) 0%, #0a1a0a 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    outline: none;

}

.btn-primary:hover {
    background-color: var(--dark-color);
    color: var(--secondary-color);
    /* transform: translateY(-3px); */
    box-shadow: 0 10px 20px rgba(85, 186, 93, 0.3);
    border: 1px solid var(--secondary-color);
    outline: none;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.hero-image {
    text-align: right;
    position: relative;
    z-index: 1;
}

.hero-image-img {
    width: 80%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    position: relative; /* Add this to create positioning context */
}

/* Add a container for the content */
.hero-image-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical alignment */
    align-items: flex-end; /* Horizontal right alignment */
    padding: 2rem; /* Add some spacing from edges */
    box-sizing: border-box;
    color: white; /* Assuming light text on dark image */
    text-align: right;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207, 250, 124, 0.1) 0%, transparent 70%);
}

.hero-shapes .shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.hero-shapes .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 20%;
}

.hero-shapes .shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: -50px;
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.section-description {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    background-color: var(--darker-color);
}

.feature-card {
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(85, 186, 93, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(85, 186, 93, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.feature-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.feature-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(5px);
}

.features-cta {
    margin-top: 50px;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(to bottom, var(--darker-color) 0%, #0a1a0a 100%);
}

.steps-container {
    position: relative;
}

.step-line {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;}

/* Steps Section */
.step-card {
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(85, 186, 93, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(85, 186, 93, 0.3);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(85, 186, 93, 0.05);
    line-height: 1;
    z-index: -1;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.step-card p {
    color: var(--gray-color);
}
/* Screenshots Section */
.screenshots-section {
    background-color: var(--darker-color);
    overflow: hidden;
    padding: 40px 0;
}

.screenshots-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-container {
    display: flex;
    gap: 50px;
    transition: transform 0.5s ease;
    cursor: grab;
    padding: 10px 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.slider-container.grabbing {
    cursor: grabbing;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
    padding: 0; /* remove padding here */
}

.slide img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(85, 186, 93, 0.2);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 15px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev:hover, .slider-next:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive styles */
@media (min-width: 576px) {
    .slide {
        /* min-width adjusted to account for the gap */
        min-width: calc(50% - 25px);
    }
}

@media (min-width: 768px) {
    .slide {
        /* min-width adjusted to account for the gap */
        min-width: calc(33.333% - 33.333px);
    }
    
    .slide img {
        max-width: 350px;
    }
}

@media (min-width: 992px) {
    .slide {
        /* min-width adjusted to account for the gap */
        min-width: calc(25% - 37.5px);
    }
    
    .slide img {
        max-width: 400px;
    }
}

@media (min-width: 1200px) {
    .slide img {
        max-width: 450px;
    }
}
/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to bottom, #0a1a0a 0%, var(--darker-color) 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-card {
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
}

.testimonial-content {
    position: relative;
    height: 100%;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--light-color);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* FAQ Section */
.faq-section {
    background-color: var(--darker-color);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(85, 186, 93, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--light-color);
    margin-bottom: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active {
    background-color: rgba(85, 186, 93, 0.1);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-question.active i.bi.bi-dash {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
}

.faq-answer p {
    color: var(--gray-color);
    padding-bottom: 20px;
}

.faq-question.active + .faq-answer {
    max-height: 500px;
}

.faq-cta {
    margin-top: 40px;
}

.faq-cta a {
    color: var(--primary-color);
    font-weight: 500;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* Download Section */
.download-section {
    /* background: linear-gradient(135deg, #0a1a0a 0%, var(--darker-color) 100%); */
    background: linear-gradient(to right, #00FF6650, #55BA5D50);
    padding: 100px 0;
}

.download-container {
    background-color: rgba(18, 18, 18);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(85, 186, 93, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.download-content p {
    color: var(--gray-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background-color: rgba(85, 186, 93, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(85, 186, 93, 0.3);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(85, 186, 93, 0.3);
}

.download-btn i {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.download-btn:hover i {
    color: var(--dark-color);
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text span {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.btn-text strong {
    font-size: 1.1rem;
    color: var(--light-color);
}

.download-btn:hover .btn-text span,
.download-btn:hover .btn-text strong {
    color: var(--dark-color);
}

.download-image {
    text-align: center;
}

.download-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); */
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding-top: 80px;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.footer-about {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-about-text {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(85, 186, 93, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 20px;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--light-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #ffffff60;
    border: 1px solid rgba(85, 186, 93, 0.2);
    border-radius: 8px;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(85, 186, 93, 0.25);
    background-color: rgba(18, 18, 18, 0.9);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(85, 186, 93, 0.1);
}

.copyright {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-links-bottom a {
    color: var(--gray-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    .header {
        padding: 15px 0;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--darker-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 30px 30px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 0 0 20px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .download-container {
        padding: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .download-container {
        padding: 30px 20px;
    }
    
    .download-content h2 {
        font-size: 2rem;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .footer-links-bottom {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-slider .booking-slider__slider{
            margin: 0px 10px !important;
    }
    .booking-slider .slider-pagination{
        display: none !important;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

