/*
Theme Name: Earth Theme
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A clean, nature-inspired WordPress theme with mountain landscapes
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: earth-theme
*/

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f5f5f5;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* === HEADER === */
.site-header {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(240, 248, 248, 0.95) 100%
  );
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.site-logo {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 8px;
  color: #2d5016;
}

.site-logo a {
  color: inherit;
}

.site-logo img {
  max-height: 50px;
  width: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background: #2d5016;
  margin: 5px 0;
  transition: all 0.3s;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.main-navigation a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-navigation a:hover {
  color: #6b9440;
}

/* === HERO SECTION === */
.hero-section {
  height: 100vh;
  background: linear-gradient(180deg, #d4e8e8 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 70px;
  overflow: hidden;
}

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.hero-title {
  font-size: 120px;
  font-weight: bold;
  color: #2d5016;
  letter-spacing: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 36px;
  color: #333;
  letter-spacing: 12px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 18px 60px;
  background: #6b9440;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: #5a7d35;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(107, 148, 64, 0.4);
}

/* === SERVICES SECTION (Home Page) === */
.services-grid {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-title {
  font-size: 28px;
  font-weight: bold;
  color: #2d5016;
  margin-bottom: 15px;
}

.service-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* === ABOUT SECTION === */
.about-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-content h2 {
  font-size: 48px;
  font-weight: bold;
  color: #2d5016;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
}

.about-content p,
.about-content .about-text {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(180deg, #d4e8e8 0%, #b8d4d4 100%);
  padding: 100px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 56px;
  font-weight: bold;
  color: #2d5016;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 8px;
}

.cta-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* === PAGE HERO === */
.page-hero {
  height: 50vh;
  background: linear-gradient(180deg, #d4e8e8 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 70px;
  overflow: hidden;
}

.page-hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

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

.page-title {
  font-size: 80px;
  font-weight: bold;
  color: #2d5016;
  letter-spacing: 15px;
  text-transform: uppercase;
}

/* === SERVICES PAGE === */
.services-detail-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 30px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-content h2 {
  font-size: 36px;
  font-weight: bold;
  color: #2d5016;
  margin-bottom: 20px;
}

.service-detail-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-detail-image img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* === CONTACT PAGE === */
.contact-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form h2,
.contact-info h2 {
  font-size: 42px;
  font-weight: bold;
  color: #2d5016;
  margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6b9440;
}

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

.contact-form button {
  margin-top: 10px;
}

.contact-info-item {
  margin-bottom: 40px;
}

.contact-info-label {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact-info-value {
  font-size: 24px;
  color: #333;
  font-weight: 500;
}

.social-links {
  margin-top: 40px;
}

.social-links h3 {
  font-size: 20px;
  color: #2d5016;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.social-icon {
  width: 50px;
  height: 50px;
  background: #6b9440;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #5a7d35;
  transform: translateY(-3px);
}

/* === FOOTER === */
.site-footer {
  background: #f8f8f8;
  padding: 40px 30px 20px;
  border-top: 1px solid #e0e0e0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.footer-navigation ul {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-navigation a {
  color: #666;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-navigation a:hover {
  color: #6b9440;
}

.footer-copyright {
  color: #666;
  font-size: 14px;
  width: 100%;
  text-align: center;
}

/* === BLOG SECTION === */
.blog-post-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 30px;
}

.blog-container {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  grid-column: 1 / -1;
}

/* === BLOG CARDS === */
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  display: block;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #888;
}

.blog-card-date,
.blog-card-category {
  display: inline-block;
}

.blog-card-category a {
  color: #6b9440;
  font-weight: 500;
}

.blog-card-title {
  font-size: 24px;
  font-weight: bold;
  color: #2d5016;
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-title a {
  color: inherit;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: #6b9440;
}

.blog-card-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-card-link {
  color: #6b9440;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.blog-card-link:hover {
  color: #5a7d35;
}

/* === SINGLE BLOG POST === */
.blog-post-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.post-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.post-meta svg {
  color: #6b9440;
}

.post-meta a {
  color: #6b9440;
  font-weight: 500;
  transition: color 0.3s;
}

.post-meta a:hover {
  color: #5a7d35;
}

.post-featured-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

.post-content-body {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.post-content-body h2 {
  font-size: 32px;
  color: #2d5016;
  margin: 30px 0 15px;
}

.post-content-body h3 {
  font-size: 24px;
  color: #2d5016;
  margin: 25px 0 12px;
}

.post-content-body p {
  margin-bottom: 20px;
}

.post-content-body img {
  margin: 25px 0;
  border-radius: 8px;
}

.post-content-body ul,
.post-content-body ol {
  margin: 20px 0 20px 30px;
}

.post-content-body li {
  margin-bottom: 10px;
}

.post-content-body blockquote {
  border-left: 4px solid #6b9440;
  padding: 15px 20px;
  margin: 25px 0;
  background: #f9f9f9;
  font-style: italic;
  color: #555;
}

.post-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
  font-size: 14px;
}

.post-tags a {
  display: inline-block;
  padding: 5px 12px;
  background: #f0f0f0;
  color: #666;
  border-radius: 4px;
  margin-right: 8px;
  margin-top: 8px;
  transition: all 0.3s;
}

.post-tags a:hover {
  background: #6b9440;
  color: white;
}

/* === POST NAVIGATION === */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.nav-previous,
.nav-next {
  flex: 1;
}

.nav-next {
  text-align: right;
}

.post-navigation a {
  display: inline-block;
  color: #6b9440;
  font-weight: 600;
  transition: color 0.3s;
}

.post-navigation a:hover {
  color: #5a7d35;
}

/* === BLOG SIDEBAR === */
.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
  font-size: 20px;
  font-weight: bold;
  color: #2d5016;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

/* Search Widget */
.search-form {
  display: flex;
  gap: 8px;
}

.search-field {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.search-field:focus {
  outline: none;
  border-color: #6b9440;
}

.search-submit {
  padding: 12px 18px;
  background: #6b9440;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-submit:hover {
  background: #5a7d35;
}

/* Recent Posts Widget */
.recent-posts-list {
  list-style: none;
}

.recent-posts-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.recent-posts-list li:last-child {
  border-bottom: none;
}

.recent-posts-list a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  display: block;
  margin-bottom: 5px;
}

.recent-posts-list a:hover {
  color: #6b9440;
}

.recent-post-date {
  font-size: 12px;
  color: #888;
}

/* Categories Widget */
.categories-list {
  list-style: none;
}

.categories-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.categories-list li:last-child {
  border-bottom: none;
}

.categories-list a {
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.categories-list a:hover {
  color: #6b9440;
}

.category-count {
  font-size: 12px;
  color: #888;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-block;
  padding: 6px 12px;
  background: #f0f0f0;
  color: #666;
  border-radius: 4px;
  font-size: 13px;
  transition: all 0.3s;
}

.tag-item:hover {
  background: #6b9440;
  color: white;
}

/* === PAGINATION === */
.blog-pagination {
  grid-column: 1 / -1;
  margin-top: 40px;
  text-align: center;
}

.blog-pagination .page-numbers,
.pagination .page-numbers {
  display: inline-block;
  padding: 10px 16px;
  margin: 0 4px;
  background: #f0f0f0;
  color: #666;
  border-radius: 4px;
  transition: all 0.3s;
}

.blog-pagination .page-numbers.current,
.pagination .page-numbers.current {
  background: #6b9440;
  color: white;
}

.blog-pagination .page-numbers:hover,
.pagination .page-numbers:hover {
  background: #6b9440;
  color: white;
}

/* === COMMENTS === */
.comments-area {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
}

.comments-title {
  font-size: 28px;
  color: #2d5016;
  margin-bottom: 30px;
}

.comment-list {
  list-style: none;
  margin-bottom: 40px;
}

.comment-list .comment {
  margin-bottom: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.comment-author img {
  border-radius: 50%;
  float: left;
  margin-right: 15px;
}

.comment-metadata {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.comment-metadata a {
  color: #6b9440;
}

.comment-content p {
  margin-bottom: 10px;
}

.reply {
  margin-top: 10px;
}

.reply a {
  font-size: 13px;
  color: #6b9440;
  font-weight: 600;
}

/* Comment Form */
.comment-form p {
  margin-bottom: 15px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: #6b9440;
}

.comment-form .btn {
  margin-top: 10px;
}

.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.no-posts h2 {
  font-size: 32px;
  color: #2d5016;
  margin-bottom: 15px;
}

.no-posts p {
  color: #666;
  margin-bottom: 25px;
}

/* ============================================
   FLEXIBLE PAGE TEMPLATE STYLES
   ============================================ */

.flexible-page-content {
  background: #ffffff;
}

/* Full-width container support */
.flexible-page-content .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Wide container support */
.flexible-page-content .alignwide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Block editor spacing */
.flexible-page-content .wp-block-group {
  margin-bottom: 0;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: block;
  }

  .main-navigation {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 30px;
    transition: left 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .main-navigation.active {
    left: 0;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .main-navigation a {
    font-size: 18px;
  }

  /* Footer Centered on Mobile */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-navigation ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero-title {
    font-size: 60px;
    letter-spacing: 10px;
  }

  .hero-subtitle {
    font-size: 24px;
    letter-spacing: 6px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-section,
  .service-detail,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 48px;
    letter-spacing: 8px;
  }

  .cta-title {
    font-size: 36px;
    letter-spacing: 4px;
  }

  /* Blog responsive */
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-post-content {
    padding: 25px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 40px;
    letter-spacing: 5px;
  }

  .hero-subtitle {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .btn {
    padding: 15px 40px;
    font-size: 14px;
  }

  .page-title {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .post-meta {
    flex-direction: column;
    gap: 10px;
  }

  .post-navigation {
    flex-direction: column;
  }

  .nav-next {
    text-align: left;
  }

  .site-logo {
    font-size: 24px;
    letter-spacing: 4px;
  }

  .site-logo img {
    max-height: 35px;
  }
}

/* ===================================
   DROPDOWN MENU STYLES
   =================================== */

/* Make sure main navigation uses flexbox and doesn't wrap */
.main-navigation {
  position: relative;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap; /* Don't wrap to multiple lines */
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation > ul > li {
  position: relative;
  margin: 0 20px;
}

/* Hide dropdown menus by default */
.main-navigation ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 10px 0;
  z-index: 1000;
}

/* Dropdown items styling */
.main-navigation ul ul li {
  margin: 0;
  width: 100%;
}

.main-navigation ul ul a {
  padding: 12px 20px;
  display: block;
  color: #333;
}

.main-navigation ul ul a:hover {
  background: #f5f5f5;
  color: #6b9440;
}

/* Show dropdown on hover */
.main-navigation li:hover > ul {
  display: flex;
}

/* Dropdown arrow indicator */
.main-navigation .menu-item-has-children > a::after {
  content: " ▼";
  font-size: 0.7em;
  margin-left: 5px;
}

/* Mobile menu adjustments */
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .main-navigation > ul > li {
    margin: 10px 0;
    width: 100%;
  }

  .main-navigation ul ul {
    position: static;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 10px;
  }
}
