body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

#result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

/* SEO Content Box */
.seo-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

/* SEO Content Headings */
.seo-content h2 {
    font-size: 26px;
    margin-top: 25px;
    color: #111;
}

.seo-content h3 {
    font-size: 22px;
    margin-top: 20px;
    color: #333;
}

/* FAQ Dropdown */
.faq-box {
    padding: 15px;
    border-left: 4px solid #007bff;
    background: #f7f9fc;
    margin-bottom: 10px;
    border-radius: 5px;
}

.faq-q {
    font-weight: bold;
    cursor: pointer;
}

.faq-a {
    display: none;
    margin-top: 8px;
    color: #555;
}

/* Table Style */
.seo-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.seo-table th, .seo-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.seo-table th {
    background: #f2f2f2;
}

