
:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --accent: #4895ef;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4cc9f0;
    --danger: #f72585;
    --light-bg: #f0f4ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #f9fbfd;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: white;
}

.navbar-brand {
    font-weight: 700;
    font-size: 28px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-download {
    background: var(--primary);
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(63, 55, 201, 0.05) 100%);
    top: -300px;
    right: -200px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-app {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-height: 50px;
}

.btn-app i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.btn-android {
    background: #3ddc84;
    color: #0d3b1e;
    min-width: 200px;
}

.btn-ios {
    background: #000;
    color: white;
    min-width: 180px;
}

.btn-web {
    background: var(--primary);
    color: white;
    min-width: 180px;
}

.btn-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.hero-img {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: #777;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: #666;
}

/* Platforms */
.platforms {
    padding: 100px 0;
    background: linear-gradient(135deg, #e6f0ff 0%, #f0f4ff 100%);
}

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2);
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.platform-icon.web {
    color: var(--primary);
}

.platform-icon.android {
    color: #3ddc84;
}

.platform-icon.ios {
    color: #000;
}

.platform-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 15px;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn-light {
    background: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Page Header - Mobile Optimized */
.page-header {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    opacity: 0.9;
    gap: 10px;
}

.post-meta .author {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.author-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.post-meta .category {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 30px;
    margin-right: 5px;
    font-size: 0.8rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Blog Content - Mobile Optimized */
.blog-detail {
    padding: 40px 0;
}

.featured-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.blog-content {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.blog-content h2 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--dark);
}

.blog-content h3 {
    font-size: 1.2rem;
    margin: 20px 0 12px;
    color: var(--dark);
}

.blog-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
}

.highlight-box {
    background: rgba(67, 97, 238, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    font-size: 0.95rem;
}

.blog-content ul, .blog-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.blog-content li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tag {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary);
    color: white;
}

/* Author Section - Mobile Optimized */
.author-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.author-bio {
    margin-left: 0;
    margin-top: 15px;
}

.author-bio h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-bio p {
    color: #666;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

/* Comments Section - Mobile Optimized */
.comments-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.comment {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comment-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.comment-header h5 {
    margin-bottom: 0;
    font-size: 1rem;
}

.comment-date {
    color: #777;
    font-size: 0.8rem;
}

.reply-btn {
    color: var(--primary);
    background: transparent;
    border: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.reply-btn:hover {
    background: rgba(67, 97, 238, 0.1);
}

/* Comment Form - Mobile Optimized */
.comment-form {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.1);
}

textarea.form-control {
    min-height: 120px;
}

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

/* Sidebar - Mobile Optimized */
.sidebar {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(67, 97, 238, 0.1);
    color: var(--dark);
}

.search-form {
    position: relative;
    margin-bottom: 20px;
}

.search-form input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 1rem;
    padding-right: 50px;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--secondary);
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.categories-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.categories-list span {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.popular-posts {
    list-style: none;
    padding: 0;
}

.popular-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 12px;
}

.popular-content {
    flex: 1;
}

.popular-content h5 {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.popular-content h5 a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-content h5 a:hover {
    color: var(--primary);
}

.popular-content .date {
    color: #777;
    font-size: 0.8rem;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
    font-size: 1rem;
}

.newsletter-form button {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary);
}

/* Related Posts - Mobile Optimized */
.related-posts {
    margin-top: 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 25px;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.1);
}

.post-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.post-content .read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.post-content .read-more:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.featured-post {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: white;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(67, 97, 238, 0.15);
}

.featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.featured-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.post-meta .category {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 500;
    margin-right: 15px;
}

.featured-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.read-more i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.post-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.post-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.tag {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary);
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--dark);
    font-weight: 500;
}

.page-link:hover, .page-link.active {
    background: var(--primary);
    color: white;
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.05);
    bottom: -100px;
    left: -100px;
    z-index: -1;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.mv-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2);
}

.team-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Timeline */
.timeline-section {
    padding: 100px 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
}

.timeline-date {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-card p {
    color: #666;
    margin-bottom: 5px;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    margin-top: 50px;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    border-radius: 15px 15px 0 0 !important;
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px;
    background: white;
}

/* Page Header */
.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--dark);
}

/* Careers Hero */
.careers-hero {
    padding: 100px 0;
    background: white;
}

.careers-hero .container {
    max-width: 1200px;
}

.careers-hero-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.careers-hero-content h2 span {
    color: var(--primary);
}

.careers-hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.careers-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

/* Job Openings */
.job-openings {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.job-location {
    color: #666;
    font-size: 0.9rem;
}

.job-type {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.job-requirements {
    margin-bottom: 20px;
}

.job-requirements h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    color: #666;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.job-requirements li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-apply {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-apply:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Culture Section */
.culture-section {
    padding: 100px 0;
    background: white;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.culture-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.15);
}

.culture-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.culture-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.culture-card p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.benefit-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Application Process */
.application-process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-number::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.2);
    transform: scale(1.2);
    z-index: -1;
}

.process-step h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Careers CTA */
.careers-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

/* Features Categories */
.features-categories {
    padding: 60px 0 40px;
    background: white;
}

.category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover, .category-btn.active {
    background: var(--primary);
    color: white;
}

/* Features Grid */
.features-section {
    padding: 60px 0;
    background: #f9fbfd;
}

.feature-badge {
    display: inline-block;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Feature Highlight */
.feature-highlight {
    padding: 80px 0;
    background: white;
}

.highlight-content {
    padding: 30px;
}

.highlight-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.highlight-content h2 span {
    color: var(--primary);
}

.highlight-content p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.highlight-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.feature-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    background: rgba(67, 97, 238, 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toggle Switch */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 50px;
    gap: 15px;
}

.toggle-label {
    font-weight: 500;
    color: #777;
}

.toggle-label.active {
    color: var(--primary);
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* Pricing Plans */
.pricing-section {
    padding: 60px 0 80px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.pricing-card.popular::before {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 35px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.price-description {
    color: #777;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.9rem;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-free {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
}

.btn-free:hover {
    background: var(--primary);
    color: white;
}

.btn-pro {
    background: var(--primary);
    color: white;
}

.btn-pro:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
}

.btn-business {
    background: var(--dark);
    color: white;
}

.btn-business:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Feature Comparison */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.table-header {
    display: flex;
    background: rgba(67, 97, 238, 0.05);
    border-bottom: 1px solid rgba(67, 97, 238, 0.1);
}

.table-header > div {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
}

.table-header > div:first-child {
    flex: 2;
    text-align: left;
}

.table-header > div:not(:first-child) {
    flex: 1;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}

.table-row > div {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.table-row > div:first-child {
    flex: 2;
    font-weight: 500;
}

.table-row > div:not(:first-child) {
    flex: 1;
    justify-content: center;
}

.feature-category {
    background: rgba(67, 97, 238, 0.05);
    font-weight: 600;
    color: var(--dark);
}

.check {
    color: var(--success);
    font-size: 1.2rem;
}

.times {
    color: #ddd;
    font-size: 1.2rem;
}

/* Download Section */
.download-section {
    padding: 80px 0;
}

.download-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.btn-download-platform {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    max-width: 250px;
}

.btn-web {
    background: var(--primary);
    color: white;
}

.btn-web:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
}

.btn-android:hover {
    background: #34c274;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(61, 220, 132, 0.3);
}

.btn-ios:hover {
    background: #222;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.badge-new {
    position: absolute;
    top: 15px;
    right: -25px;
    background: var(--danger);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

/* Instructions Section */
.instructions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.instruction-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.instruction-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Screenshots */
.screenshots-section {
    padding: 80px 0;
    background: white;
}

.screenshot-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* Search Section */
.search-section {
    padding: 40px 0;
    background-color: white;
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.search-container input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 1rem;
    padding-left: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: white;
    border: 1px solid #ddd;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover, .category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.accordion-item:hover {
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.15);
}

.accordion-button {
    font-size: 1.1rem;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234361ee'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: #555;
    line-height: 1.8;
}

.accordion-body ul {
    padding-left: 20px;
    margin-top: 10px;
}

.accordion-body li {
    margin-bottom: 8px;
}

.accordion-body strong {
    color: var(--primary);
}

.support-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.support-cta::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -150px;
    right: -100px;
}

.support-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.support-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.support-cta .btn {
    background: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.support-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Popular Topics */
.popular-topics {
    margin-top: 60px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.topic-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.15);
}

.topic-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.topic-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.topic-card p {
    color: #666;
    margin-bottom: 20px;
}

.topic-card a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topic-card a:hover {
    text-decoration: underline;
}

/* Mobile-specific adjustments */
@media (max-width: 576px) {
    .page-header {
        padding: 90px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .post-meta {
        font-size: 0.8rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h2 {
        font-size: 1.3rem;
    }
    
    .blog-content h3 {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-img {
        margin-right: 0;
        margin-bottom: 12px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .blog-container {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .featured-content h2 {
        font-size: 1.8rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .table-header > div, .table-row > div {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .btn-app {
        height: 50px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .featured-img {
        height: 300px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-card, .contact-form {
        padding: 30px;
    }
    
    .map-container {
        height: 300px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .careers-hero-content h2 {
        font-size: 2rem;
    }

    .careers-stats {
        flex-direction: column;
        gap: 20px;
    }

    .job-header {
        flex-direction: column;
        gap: 10px;
    }

    .culture-grid,
    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .feature-highlight {
        padding: 50px 0;
    }
    
    .highlight-content h2 {
        font-size: 1.8rem;
    }

    .pricing-toggle {
        flex-direction: column;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .table-header {
        display: none;
    }
    
    .comparison-table {
        display: block;
    }
    
    .table-row {
        flex-direction: column;
        border-bottom: 2px solid #eee;
        padding: 15px 0;
    }
    
    .table-row > div:first-child {
        font-weight: 600;
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .table-row > div:not(:first-child) {
        justify-content: flex-start;
        padding: 8px 20px;
    }
    
    .table-row > div:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: 15px;
        color: var(--primary);
        min-width: 80px;
        display: inline-block;
    }

    .page-header {
        padding: 90px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 80px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .category-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        text-align: center;
    }

    .page-header {
        padding: 90px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .search-section {
        padding: 30px 20px;
        margin-top: -30px;
    }
    
    .support-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 80px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 2.5rem;
    }

    .page-header {
        padding: 80px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .download-card {
        padding: 30px;
    }

    .page-header {
        padding: 70px 0 30px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}
