:root {
    --primary-color: #4361ee;
    --primary-dark: #3a56d4;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #4cc9f0;
    --error-color: #f72585;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


.container {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

h1 {
    color: #0072ff;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 15px;
    background-color: #0072ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px 0 20px;
    transition: background 0.3s;
}

button:hover {
    background-color: #005ecb;
}

.result {
    font-size: 17px;
    color: #333;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    line-height: 1.5;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

body {
    background: #f0f8ff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Header */
.site-header {
    background-color: #0072ff;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    object-fit: cover;
    position: relative;
    top: 2px;
    filter: drop-shadow(0 0 3px rgb(255, 255, 255));
}

.logo a span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: bolder;
    background: linear-gradient(to right, #aa00ff, #0015ff, #1b9400, #ffae00, #ff0000, #ffae00, #1b9400, #0015ff, #aa00ff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

.logo a {
    text-decoration: none;
    color: white;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
    color: aqua;
}

.container {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 40px auto 20px;
}

footer {
    background: #212121;
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    text-decoration: none;
}

footer a span {
    color: #aa00ff;
    font-weight: bold;
}

footer a span:hover {
    color: aqua;
}

@media (min-width: 300px) and (max-width:350px) {
    .nav-links a {
        font-size: small;
        margin: 0 0 0 10px;
    }

    .site-header {
        padding: 5px 10px;
    }
}

.seo-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  line-height: 1.6;
  color: #333;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.seo-content h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f1f1;
}

.seo-content h3 {
  font-size: 1.4rem;
  color: #3498db;
  margin: 25px 0 15px 0;
}

.seo-content p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.seo-content ul, 
.seo-content ol {
  margin: 0 0 20px 25px;
}

.seo-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.seo-content strong {
  color: #2c3e50;
  font-weight: 600;
}

/* FAQ Styling */
.seo-content ul li strong {
  color: #e74c3c;
}

.seo-content ul li br + strong {
  color: #27ae60;
  display: inline-block;
  margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .seo-content {
    padding: 20px;
    margin: 20px auto;
  }
  
  .seo-content h2 {
    font-size: 1.5rem;
  }
  
  .seo-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .seo-content {
    padding: 15px;
  }
  
  .seo-content ul, 
  .seo-content ol {
    margin-left: 20px;
  }
}