.search-section {
    background-color: #1f2d3e;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #2b394b;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 150px;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.header-links span {
    color: #fff;
}

.search-bar {
    width: 60%;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px;
    background-color: #2f3d4f;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.search-bar input::placeholder {
    color: #a6a9ad;
}



.breadcrumbs {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #6c757d;
}

.breadcrumbs span {
    font-weight: bold;
}

.pricing-section {
    font-family: Arial, sans-serif;
}

.pricing-section h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.pricing-section .update-time {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.pricing-section a {
    color: #007bff;
    text-decoration: none;
}

.pricing-section a:hover {
    text-decoration: underline;
}



.related-articles {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.related-articles h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.related-articles ul {
    list-style-type: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 12px;
}

.related-articles li a {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
}

.related-articles li a:hover {
    text-decoration: underline;
}



.feedback-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

.feedback-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.emoji-container {
    display: flex;
    gap: 20px;
}

.emoji {
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.2s;
}

.emoji:hover {
    transform: scale(1.2);
}



.footer {
    background-color: #2E3A45; /* Dark background color */
    padding: 40px 0; /* Spacing for the footer */
    text-align: center; /* Center the content */
    position: relative;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center; /* Center the content vertically */
}

.footer-logo {
    font-size: 48px; /* Large font size for the logo */
    color: #fff; /* White color for the text */
    font-weight: bold;
    letter-spacing: 0.05em;
}
