body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 60px 20px 20px 20px; /* Top padding increased to compensate for fixed top-bar */
  background-color: #f4f4f9;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
h1 {
  text-align: center;
  color: #007bff;
  margin-bottom: 10px;
}

h2 {
  text-align: center;
  font-size: 22px;
  margin-top: 10px;
  color: #555;
}

/* Intro text */
.intro, .welcome-text {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  color: #666;
}

/* Top Bar */
.top-bar {
  background-color: #333;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.top-bar li {
  margin-right: 20px;
}

.top-bar li:last-child {
  margin-right: 0;
}

.top-bar a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 5px;
}

.top-bar a:hover {
  background-color: #007bff;
  color: white;
}

/* Layout for Ad and Tools */
.content-area {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  align-items: flex-start;
}

.left-ad {
  width: 400px;
  flex-shrink: 0;
  background-color: #eaeaea;
  min-height: 300px;
  border-radius: 8px;
  padding: 10px;
  position: sticky;
  top: 80px;
  
  /* Add these lines to center the ad content */
  display: flex;
  justify-content: center;
  align-items: center;
}

#container-e73b4bb7a2307ae40056d1021c890387 {
  width: 100%;
  height: auto;
}


/* Tool List */
.tool-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Tool Item */
.tool-item {
  display: block;
  background-color: #fff;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #ddd;
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.tool-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

/* Footer */
footer {
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* Responsive Mobile */
@media (max-width: 900px) {
  .content-area {
    flex-direction: column;
  }
  
  .left-ad {
    width: 100%;
    position: relative;
    top: 0;
  }
}
