#ts {
    /* Basic Container */
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    padding: 20px;
    max-width:90%;
    position: relative;
    overflow: hidden;
    margin:30px auto;
  }
   
#ser{
    padding:20px 0 0 0;
}
    .search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

.search-form input[type="text"] {
  flex: 1;
  padding: 12px 18px;
  font-size: 16px;
  border: 0px solid var(--primary-color);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  outline: none;
  transition: border 0.3s ease;
}

.search-form input[type="text"]:focus {
  border-color: #007bff;
}

.search-form button {
  padding: 12px 20px;
  font-size: 16px;
  border: 0px solid #fff;
  background-color: var(--primary-color);
  color: white;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  cursor: pointer;
  transition: background 0.3s ease;
  border-left: none;
}

.search-form button:hover {
  background-color: #0056b3;
}
@media (max-width: 768px) {
  .tabbed-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .tabbed-section h2 {
    font-size: 1.3rem;
  }
}
h2{
    font-family: "Noto Sans", sans-serif;
}
@media (max-width: 768px) {
  .pdf-tools-heading, h2 {
    font-size: 22px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .pdf-tools-heading, h2 {
    font-size: 18px;
    line-height: 1.6;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
 .p-content {
    padding: 80px 40px;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-radius:15px;
    margin:50px auto;
   max-width:90%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-description {
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.content-block {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.content-icon {
    font-size: 28px;
    color: var(--primary-color);
    background: rgba(74, 107, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.content-text p {
    color: var(--secondary-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.key-points {
    list-style: none;
    margin-top: 20px;
}

.key-points li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-color);
}

.key-points i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 0.9em;
}

/* Dark mode adjustments */
.dark-mode .content-icon {
    background: rgba(74, 107, 255, 0.2);
}

@media (max-width: 768px) {
    .content-block {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}