:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --secondary: #06b6d4;
    --accent: #8b5cf6;
    --light: #f8fafc;
    --light-gray: #f1f5f9;
    --gray: #94a3b8;
    --dark: #1e293b;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --border-radius: 16px;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary);
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.4);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: white;
}

.btn-error {
    background: var(--error);
    color: white;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.animated-text {
    display: inline-block;
    color: #6366f1;
    position: relative;
}

.animated-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: var(--primary);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    color: rgba(99, 102, 241, 0.15);
    z-index: 1;
    animation: float 15s infinite linear;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.floating-icon:nth-child(3) {
    top: 40%;
    right: 15%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.floating-icon:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.floating-icon:nth-child(5) {
    top: 30%;
    right: 25%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.floating-icon:nth-child(6) {
    top: 80%;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 23s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* 3D Elements */
.shape-3d {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    z-index: 1;
    animation: pulse 8s infinite ease-in-out;
}

.shape-3d:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-3d:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.3;
    }
}

/* Generator Section */
.generator {
    padding: 40px 0;
}

.generator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .generator-container {
        grid-template-columns: 1fr;
    }
}

.card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
}

.card-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header i {
    color: var(--primary);
    font-size: 24px;
}

.card-header h2 {
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

.schema-type-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.schema-type {
    background: var(--light-gray);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.schema-type:hover {
    background: var(--primary-light);
    color: white;
}

.schema-type.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.3);
}

.schema-type i {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Output Section */
.output-container {
    position: relative;
}

.code-output {
    background: #1e293b;
    color: #f8fafc;
    padding: 20px;
    border-radius: var(--border-radius);
    font-family: monospace;
    white-space: pre-wrap;
    max-height: 400px;
    overflow-y: auto;
    min-height: 400px;
}

.code-output[contenteditable="true"] {
    outline: 2px solid var(--primary-light);
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 28px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-column a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .schema-type-selector {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}

/* Web3 Elements */
.web3-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
    vertical-align: middle;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    background: var(--dark);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    background: var(--success);
}

.toast.error {
    background: var(--error);
}

.toast.warning {
    background: var(--warning);
}

.form-section {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

/* FAQ Specific Styles */
.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    transition: all 0.2s ease;
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-item .form-group {
    margin-bottom: 1rem;
}

.faq-item .form-group:last-child {
    margin-bottom: 0;
}

.faq-item .btn-remove-faq {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--gray);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.faq-item .btn-remove-faq:hover {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

#add-faq {
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    color: #6c757d;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin-top: 1rem;
}

#add-faq:hover {
    background: #e9ecef;
    border-color: var(--primary);
    color: var(--primary);
}

#faq-questions {
    margin-bottom: 1.5rem;
}

#faq-questions:empty {
    margin-bottom: 0;
}

#faq-questions:empty + #add-faq {
    margin-top: 0;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary);
}

.form-section-title i {
    font-size: 18px;
}

.toggle-edit {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--primary);
    cursor: pointer;
}
.features-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.schema-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.schema-category {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schema-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 40px;
    color: #4f46e5;
    margin-bottom: 20px;
}

.category-title {
    font-size: 22px;
    margin: 15px 0;
    color: #1e293b;
}

.category-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features-list {
    text-align: left;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #4f46e5;
    margin-right: 10px;
}

.cta-section {
    text-align: center;
    padding: 80px 0;
    background: #f8fafc;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}
 /* Search Bar */
 .search-container {
    margin: 30px 0;
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 15px;
    color: #94a3b8;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Results Count */
.results-count {
    text-align: right;
    color: #64748b;
    margin: 10px 0 20px;
    font-size: 14px;
}

.results-count span {
    font-weight: 600;
    color: #4f46e5;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0 50px;
    min-height: 300px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 0;
    color: #64748b;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-btn {
    background: #f1f5f9;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #e2e8f0;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover,
.page-number.active {
    background: #4f46e5;
    color: white;
}

.blog-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 80px 0 60px;
}

.blog-header .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.blog-header .header-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: 2.8rem;
    margin: 0 0 15px;
    line-height: 1.2;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.header-search {
    width: 100%;
    max-width: 600px;
    margin: 20px auto 0;
}

.search-wrapper {
    position: relative;
    width: 100%;
}

.search-wrapper input {
    width: 100%;
    padding: 16px 60px 16px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-wrapper input:focus {
    outline: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #4338ca;
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2.2rem;
    }

    .blog-header p {
        font-size: 1rem;
    }

    .search-wrapper input {
        padding: 14px 55px 14px 20px;
    }

    .search-btn {
        width: 42px;
        height: 42px;
    }
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    margin: 10px 0 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-categories {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.category-tag {
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tag:hover,
.category-tag.active {
    background: #4f46e5;
    color: white;
}
 /* Blog Post Styles */
 .blog-post-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.blog-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-breadcrumb {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.hero-breadcrumb a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hero-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.hero-breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.post-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 3.2rem;
    margin: 0 0 25px;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.4;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.post-meta-item i {
    font-size: 1rem;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.article-header {
    margin-bottom: 50px;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 10px 20px;
    border: 2px solid #4f46e5;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    background: #4f46e5;
    color: white;
    transform: translateX(-3px);
}

.post-featured-image {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    object-fit: cover;
    margin: 0 0 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-featured-image:hover {
    transform: translateY(-5px);
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    font-family: 'Georgia', serif;
}

.post-content p {
    margin-bottom: 1.8em;
}

.post-content h2 {
    font-size: 2rem;
    margin: 3em 0 1.2em;
    color: #1f2937;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.post-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 2.5em 0 1em;
    color: #1f2937;
    font-weight: 600;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
}

.post-content blockquote {
    border-left: 4px solid #4f46e5;
    padding: 1em 0 1em 2em;
    margin: 2em 0;
    font-style: italic;
    color: #475569;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
}

.post-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5em;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2em 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.post-content code {
    font-family: 'Courier New', Courier, monospace;
    background: #f1f5f9;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
    color: #dc2626;
}

.post-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
    font-size: 1em;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.post-tag {
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.post-tag:hover {
    background: #4f46e5;
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #4338ca;
}

.nav-link.prev {
    margin-right: auto;
}

.nav-link.next {
    margin-left: auto;
}

.author-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 80px 0;
    display: flex;
    gap: 30px;
    align-items: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.author-info h4 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    color: #1e293b;
}

.author-title {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
}

.author-bio {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.social-link:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    z-index: 1000;
    transition: width 0.3s ease;
}

.share-buttons {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.facebook {
    background: #4267b2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .share-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2.2rem;
    }

    .post-subtitle {
        font-size: 1.1rem;
    }

    .post-featured-image {
        height: 300px;
        margin: 0 0 40px;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.6rem;
    }

    .post-content h3 {
        font-size: 1.3rem;
    }

    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link.prev,
    .nav-link.next {
        margin: 0;
    }

    .post-meta {
        flex-direction: column;
        gap: 15px;
    }

    .breadcrumb-nav {
        font-size: 0.8rem;
    }

    .article-container {
        padding: 40px 20px 60px;
    }
}
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero p {
    font-size: 1.3rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    margin: 0 0 15px;
    color: #1e293b;
    font-weight: 700;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4f46e5;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info,
.office-hours,
.social-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.contact-info h3,
.office-hours h3,
.social-section h3 {
    font-size: 1.3rem;
    margin: 0 0 15px;
    color: #1e293b;
    font-weight: 600;
}

.contact-info p,
.social-section p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 1.1rem;
    margin: 0 0 5px;
    color: #1e293b;
    font-weight: 600;
}

.method-details p {
    margin: 0 0 5px;
    color: #374151;
    font-weight: 500;
}

.method-details span {
    font-size: 0.9rem;
    color: #64748b;
}

/* Office Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.hours-item .day {
    font-weight: 600;
    color: #374151;
}

.hours-item .time {
    color: #4f46e5;
    font-weight: 500;
}

/* Social Links */
.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.social-link-large.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link-large.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link-large.github:hover {
    background: #333;
    color: white;
}

.social-link-large i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.social-link-large span {
    font-weight: 500;
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: white;
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin: 0 0 15px;
    color: #1e293b;
    font-weight: 700;
}

.faq-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin: 0 0 12px;
    color: #1e293b;
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 40px;
    color: #1e293b;
    font-weight: 700;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-content {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.map-content i {
    font-size: 4rem;
    color: #4f46e5;
    margin-bottom: 25px;
}

.map-content h3 {
    font-size: 1.5rem;
    margin: 0 0 15px;
    color: #1e293b;
    font-weight: 600;
}

.map-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-section {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-content,
    .contact-faq,
    .map-section {
        padding: 60px 0;
    }

    .contact-form-section,
    .contact-info,
    .office-hours,
    .social-section {
        padding: 25px;
    }

    .faq-header h2,
    .map-section h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-content {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .form-header h2 {
        font-size: 1.7rem;
    }

    .contact-form-section {
        padding: 20px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .method-icon {
        align-self: center;
    }

    .hours-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .social-links-large {
        gap: 10px;
    }

    .social-link-large {
        padding: 12px 16px;
    }

    .map-content {
        padding: 30px 20px;
    }

    .map-content i {
        font-size: 3rem;
    }
}
 /* About Page Styles */
 .about-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero p {
    font-size: 1.3rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
    background: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin: 0 0 30px;
    color: #1e293b;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: translateY(-10px);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin: 0 0 20px;
    color: #1e293b;
    font-weight: 600;
}

.mv-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 0 0 20px;
    color: #1e293b;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.member-image {
    margin-bottom: 25px;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f1f5f9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-info h4 {
    font-size: 1.3rem;
    margin: 0 0 8px;
    color: #1e293b;
    font-weight: 600;
}

.member-role {
    color: #4f46e5;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 15px;
}

.member-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social a:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin: 0 0 20px;
    color: #1e293b;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mv-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .company-story,
    .mission-vision,
    .team-section,
    .cta-section {
        padding: 60px 0;
    }

    .story-text h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .story-text h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mv-card,
    .team-member {
        padding: 25px 20px;
    }

    .story-image img {
        height: 300px;
    }
}
  /* Privacy Policy Styles */
  .privacy-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.privacy-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-hero h1 {
    font-size: 3.5rem;
    margin: 0 0 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-hero p {
    font-size: 1.3rem;
    margin: 0 0 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Privacy Content */
.privacy-content {
    padding: 80px 0;
    background: #f8fafc;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Sidebar */
.privacy-nav {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.privacy-nav h3 {
    font-size: 1.2rem;
    margin: 0 0 20px;
    color: #1e293b;
    font-weight: 600;
}

.privacy-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-nav li {
    margin-bottom: 8px;
}

.privacy-nav a {
    display: block;
    color: #64748b;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.privacy-nav a:hover {
    background: #f1f5f9;
    color: #4f46e5;
}

/* Main Content */
.privacy-main {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.privacy-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 2rem;
    margin: 0 0 25px;
    color: #1e293b;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #1e293b;
    font-weight: 600;
}

.privacy-section h4 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
    color: #1e293b;
    font-weight: 600;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 8px;
}

.privacy-section strong {
    color: #1e293b;
    font-weight: 600;
}

/* Use Cases Grid */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.use-case {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.use-case h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin: 0 0 12px;
    color: #1e293b;
    font-weight: 600;
}

.use-case i {
    color: #4f46e5;
    font-size: 1.2rem;
}

.use-case p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sharing Info */
.sharing-info h4 {
    color: #4f46e5;
    font-size: 1.1rem;
    margin: 25px 0 10px;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.security-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.security-item i {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 15px;
    display: block;
}

.security-item h4 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: #1e293b;
}

.security-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Cookie Types */
.cookie-types h4 {
    color: #4f46e5;
    font-size: 1.1rem;
    margin: 20px 0 8px;
}

/* User Rights */
.user-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.right-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    margin: 0 0 8px;
    color: #1e293b;
}

.right-item i {
    color: #4f46e5;
    font-size: 1.1rem;
}

.right-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Details */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.contact-method i {
    font-size: 1.5rem;
    color: #4f46e5;
    margin-top: 2px;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin: 0 0 5px;
    color: #1e293b;
}

.contact-method p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }

    .privacy-nav {
        padding: 25px;
    }

    .privacy-main {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 60px;
    }

    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-hero p {
        font-size: 1.1rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-nav {
        position: static;
        order: 2;
        margin-top: 30px;
    }

    .privacy-main {
        order: 1;
        padding: 25px;
    }

    .privacy-section h2 {
        font-size: 1.7rem;
    }

    .use-cases {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-measures {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .user-rights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-hero p {
        font-size: 1rem;
    }

    .privacy-main {
        padding: 20px;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .security-measures {
        grid-template-columns: 1fr;
    }

    .security-item {
        padding: 20px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Mobile Header & Sidebar Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(79, 70, 229, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #1e293b;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.mobile-logo .logo-icon {
    font-size: 1.5rem;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin: 0;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav a:hover {
    background: #f8fafc;
    color: #4f46e5;
    border-left-color: #4f46e5;
}

.mobile-nav a.active {
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.1), transparent);
    color: #4f46e5;
    border-left-color: #4f46e5;
}

.mobile-nav a i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.mobile-nav a span {
    font-size: 1rem;
}

/* Mobile Sidebar Overlay */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Desktop Navigation Updates */
.desktop-nav {
    display: flex;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .mobile-sidebar {
        width: 280px;
        right: -280px;
    }
    
    .mobile-sidebar-header {
        padding: 15px 20px;
    }
    
    .mobile-nav a {
        padding: 12px 20px;
        gap: 12px;
    }
    
    .mobile-logo {
        font-size: 1.1rem;
    }
}

/* Main Tools Section with Tabs */
.main-tools {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 15px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border-right: 1px solid #e2e8f0;
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn:hover {
    background: var(--light);
    color: var(--primary);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn span {
    font-weight: 600;
}

/* Tab Content */
.tab-content {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tool Header in Tabs */
.tab-pane .tool-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    margin: -40px -40px 30px -40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.tab-pane .tool-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tab-pane .tool-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tab-pane .tool-info p {
    opacity: 0.9;
    font-size: 16px;
}

/* SEO Tools Section */
.seo-tools {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

.tool-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 40px;
    overflow: hidden;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tool-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tool-info p {
    opacity: 0.9;
    font-size: 16px;
}

.tool-content {
    padding: 30px;
}

.input-section {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.action-section {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.result-section {
    border-top: 2px solid var(--light-gray);
    padding-top: 30px;
}

.result-header {
    margin-bottom: 20px;
}

.result-header h4 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
}

.result-content {
    background: var(--light);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--primary);
}

.char-count {
    color: var(--gray);
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.char-count.warning {
    color: var(--warning);
}

.char-count.error {
    color: var(--error);
}

/* Tab Navigation Responsive */
@media (max-width: 768px) {
    .tab-navigation {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 15px;
    }
    
    .tab-btn:last-child {
        border-bottom: none;
    }
    
    .tab-btn span {
        font-size: 14px;
    }
    
    .tab-pane {
        padding: 20px;
    }
    
    .tab-pane .tool-header {
        margin: -20px -20px 20px -20px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .tab-pane .tool-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .tab-pane .tool-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        padding: 12px;
        gap: 8px;
    }
    
    .tab-btn i {
        font-size: 16px;
    }
    
    .tab-btn span {
        font-size: 13px;
    }
}

/* Additional Features Section */
.additional-features {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 16px;
}

/* SEO Tools Responsive */
@media (max-width: 768px) {
    .tool-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .action-section {
        flex-direction: column;
    }
    
    .action-section .btn {
        width: 100%;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}