:root {
   --primary-color: #4285f4;
   --text-color: #333;
   --border-color: #ddd;
   --bg-color: #f9f9f9;
}
body {
   font-family: 'Arial', sans-serif;
   background-color: #f5f5f5;
   margin: 0;

   color: #333;
}
h1, h2, h3 {
   color: var(--text-color);
}
h1 {
   font-size: 28px;
   margin-bottom: 10px;
   text-align: center;
}
h2 {
   font-size: 22px;
   margin: 25px 0 15px;
   border-bottom: 1px solid var(--border-color);
   padding-bottom: 8px;
}
h3 {
   font-size: 18px;
   margin: 20px 0 10px;
}
.section {
   background: var(--bg-color);
   padding: 20px;
   border-radius: 8px;
   margin-bottom: 20px;
}
 

 
 h1 {
 
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
 }
 
 p {
 
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 30px;
 }
 
 .text-align-center {
    text-align: center;
 }
 
 textarea {
    width: 100%;
    height: 180px;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #bebebe;
    border-radius: 8px;
    font-size: 16px;
    resize: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
 }
 
 textarea:focus {
    border-color: #3498db;
    outline: none;
 }
 
 .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
 }
 
 .stats div {
    background: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
 }
 
 .stats div strong {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
 }
 
 .stats div em {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
 }
 
 .analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
 }
 
 .analysis>div {
    background: #ecf0f1;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    max-height: 300px;
 }
 
 .analysis>div h3 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
 }
 
 .tool-description {
   margin-top: 30px;
   line-height: 1.6;
   color: #333;
}
 
 .tool-description h2 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
 }
 
 .tool-description ul {
    padding-left: 20px;
    list-style: disc;
    color: #333;
 }
 
 @media (max-width: 768px) {
    .stats {
        grid-template-columns: 1fr;
    }
 
    .analysis {
        grid-template-columns: 1fr;
    }
 }
 
 .analysis p {
    margin: 0 0 10px;
    border-bottom: 1px solid #c1c1c1;
    text-align: left;
 }
 
 .analysis p>span:nth-child(1) {
    display: inline-block;
    width: calc(100% - 43px);
 }
 
 .analysis p span+span {
    background: #8d8d8d;
    padding: 0 10px;
    color: white;
    border-radius: 5px;
    float: right;
 }
 

 

header {
   background-color: #2c3e50;
   color: #fff;
   padding: 20px;
   text-align: center;
   width: 100%;
   box-sizing: border-box;
}

header h1 {
   color: white;
   font-size: 32px;

}

header p {
   color: white;
   margin: 10px 0 0;
   line-height: 24px;
}

footer {
   text-align: center;
   margin-top: 40px;
   padding: 20px;
   background-color: #2c3e50;
   color: #fff;
   width: 100%;
   box-sizing: border-box;
}

footer a {
   color: #1489f7;
   text-decoration: none;
}

footer p {
   color: #fff;
   margin: 0;
}

footer a:hover {
   text-decoration: underline;
}

.container {
   max-width: 800px;
   width: 90%;
   margin: 20px auto;
   padding: 20px;
   background: #fff;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   border-radius: 10px;
}

.toolWrapper {
   border: 1px solid #8b8b8b;
   padding: 15px;
   border-radius: 15px;
   margin: 0 0 60px 0;
   background: #f7f7f7;
}
.tool-description p, .tool-description ol{
   color: #333;
}
 