/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: #4361ee;
}

.logo i {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4361ee;
}

.premium-btn {
    background-color: #4361ee;
    color: white !important;
    padding: 8px 16px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.premium-btn:hover {
    background-color: #3a56e4;
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #4361ee;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Generators Section */
.generators-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.generator-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    background-color: #f0f0f0;
    border: none;
    padding: 15px 25px;
    margin: 0 5px 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 5px;
}

.tab-button.active {
    background-color: #4361ee;
    color: white;
}

.tab-button:hover:not(.active) {
    background-color: #e0e0e0;
}

.generator-content {
    max-width: 800px;
    margin: 0 auto;
}

.generator-tab {
    display: none;
}

.generator-tab.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.generator-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4361ee;
}

.generate-btn {
    background-color: #4361ee;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.generate-btn:hover {
    background-color: #3a56e4;
}

.result-container {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.result-container h3 {
    margin-bottom: 20px;
    color: #333;
}

.result-box {
    background-color: #f0f5ff;
    padding: 20px;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #4361ee;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px dashed #4361ee;
}

.copy-btn {
    background-color: #38b000;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #2e9300;
}

.copy-btn i {
    margin-right: 8px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #4361ee;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
}

/* Premium Section */
.premium-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
    text-align: center;
}

.premium-content {
    max-width: 700px;
    margin: 0 auto;
}

.premium-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.premium-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.premium-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.premium-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.premium-features i {
    color: #38b000;
    margin-right: 10px;
}

.premium-button {
    background-color: #ffd60a;
    color: #333;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.premium-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Page Section (for individual pages like About, Contact, etc.) */
.page-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #4361ee;
}

.page-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 10px;
    color: #333;
}

.page-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.page-content ul {
    margin: 15px 0 15px 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
    color: #4361ee;
    margin-right: 15px;
    min-width: 40px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #ccc;
}

.footer-links {
    flex: 2;
    text-align: right;
    min-width: 300px;
}

.footer-links ul {
    list-style: none;
    display: inline-block;
    text-align: right;
}

.footer-links li {
    margin-bottom: 10px;
    display: inline-block;
    margin-left: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4361ee;
}

.social-links {
    flex: 1;
    text-align: right;
    min-width: 150px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #4361ee;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.use-case-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    font-size: 2.5rem;
    color: #4361ee;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.use-case-card ul {
    list-style-type: none;
    padding-left: 0;
}

.use-case-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.use-case-card li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4361ee;
}

/* Structured Data Schema Styles */
.schema-hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .generator-tabs {
        flex-direction: column;
    }
    
    .tab-button {
        margin: 5px 0;
        width: 100%;
    }
    
    .premium-content h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links,
    .social-links {
        text-align: center;
        margin-top: 20px;
    }
    
    .footer-links ul,
    .social-links a {
        display: inline-block;
        text-align: center;
    }
    
    .footer-links li {
        display: inline-block;
        margin: 0 10px;
    }
    
    .social-links a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .generator-form,
    .result-container {
        padding: 20px;
    }
    
    .result-box {
        font-size: 1.2rem;
    }
    
    .page-section h1 {
        font-size: 2rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
}