.tool-logo {
    display: block;
    margin: 0 auto 1.5rem;
    max-width: 120px;
}

.tool-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tool-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

/* Barcode generator specific styles */
.barcode-generator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.input-section,
.preview-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.btn-generate {
    width: 100%;
    padding: 0.75rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-generate:hover {
    background-color: #2980b9;
}

.preview-section h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.barcode-preview {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.download-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-download {
    padding: 0.75rem;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-download:hover {
    background-color: #27ae60;
}

/* SEO content styles */
.seo-content {
    margin-top: 3rem;
    padding: 2rem;
    background: #f1f1f1;
    border-radius: 8px;
    color: #2c3e50;
}

.seo-content h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.seo-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
}


/* Responsive design */
@media (max-width: 768px) {
    .barcode-generator {
        grid-template-columns: 1fr;
        display:block;

    }

    
    .tool-hero {
        padding: 1rem;
    }
   
}