
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

body {
    font-family: 'Google Sans', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #3c4043;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}
a{
    color:#222;
    text-decoration: none;
}

/* hesappos Navbar */
.hesappos-navbar {
    background: #ffffff;
    border-bottom: 1px solid #dadce0;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    position: relative;
    z-index: 1000;
    min-height: 64px;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 64px;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
}

.hesappos-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hesappos-text {
    font-size: 22px;
    font-weight: 400;
    color: #5f6368;
}

.workspace-text {
    font-size: 22px;
    font-weight: 400;
    color: #3c4043;
}

/* Navigation Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item {
    position: relative;
}

.nav-item.dropdown {
    position: static;
}

.nav-link {
    color: #3c4043;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: #1a73e8;
    background-color: #f8f9fa;
    padding: 8px 12px;
}

.nav-link.active {
    color: #1a73e8;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 6px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
    color: #5f6368;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 0;
    border: none;
    padding: 0;
    width: 100%;
    max-width: 100%;
    left: 50%;
    margin-left: -50vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 13px;
    display: none;
}
div#mega-menu {
    border: 1px solid #ddd;
}
@media (max-width: 768px) {
    div#mega-menu {
        border: none;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
  }

.mega-menu.show {
    opacity: 1;
    visibility: visible;
    display: block;
    background: #f8f8f8;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
}

.mega-menu-column h4 {
    font-size: 16px;
    font-weight: 500;
    color: #3c4043;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: none;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.product-item:hover {
    background-color: #f8f9fa;
}

.product-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.gmail-icon { background-color: #fce8e6; }
.meet-icon { background-color: #e6f4ea; }
.chat-icon { background-color: #e6f4ea; }
.drive-icon { background-color: #e8f0fe; }
.docs-icon { background-color: #e8f0fe; }
.sheets-icon { background-color: #e6f4ea; }
.gemini-icon { background-color: #e8f0fe; }
.calendar-icon { background-color: #fce8e6; }

.product-info h5 {
    font-size: 14px;
    font-weight: 500;
    color: #3c4043;
    margin-bottom: 2px;
}

.product-info p {
    font-size: 12px;
    color: #5f6368;
    margin: 0;
}

/* CTA Buttons */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-outline {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    transition: all 0.2s ease;
    background: transparent;
}

.btn-outline:hover {
    background-color: #f8f9fa;
    border-color: #1a73e8;
}

.btn-primary {
    background: linear-gradient(135deg, #194473 0%, #071d36 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #1557b0;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-buttons .btn-primary {
    background: #1a73e8;
    color: white;
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: #1557b0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.section-description {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.feature-icon svg {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: #667eea;
}

.feature-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #2d3748;
}

.feature-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.feature-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.feature-link:hover::after {
    width: 100%;
}

.feature-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonial-card {
    background: white;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #dadce0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 4px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    color: #fbbc04;
    margin-bottom: 16px;
    font-size: 16px;
}

.testimonial-content p {
    font-style: italic;
    color: #5f6368;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #5f6368;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #3c4043;
}

.author-info p {
    color: #5f6368;
    margin: 0;
    font-size: 14px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #dadce0;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 4px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.pricing-card.featured {
    border: 2px solid #1a73e8;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a73e8;
    color: white;
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.pricing-header h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #3c4043;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.currency {
    font-size: 20px;
    font-weight: 400;
    color: #5f6368;
}

.amount {
    font-size: 48px;
    font-weight: 400;
    color: #3c4043;
}

.period {
    font-size: 16px;
    color: #5f6368;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #3c4043;
}

.pricing-features i {
    color: #34a853;
    font-size: 16px;
}

.pricing-card .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    display: block;
}

.pricing-card .btn-primary {
    background: #1a73e8;
    color: white;
    border: none;
}

.pricing-card .btn-primary:hover {
    background: #1557b0;
}

.pricing-card .btn-outline {
    background: transparent;
    color: #1a73e8;
    border: 1px solid #dadce0;
}

.pricing-card .btn-outline:hover {
    background: #f8f9fa;
    border-color: #1a73e8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin: 0 8px;
}

.cta-section .btn-primary {
    background: #1a73e8;
    color: white;
    border: none;
}

.cta-section .btn-primary:hover {
    background: #1557b0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: #3c4043;
    padding: 48px 0 24px;
    border-top: 1px solid #dadce0;
}

.footer-brand h5 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #3c4043;
}

.footer-brand p {
    color: #5f6368;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #dadce0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #1a73e8;
    color: white;
}

.footer-links h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #3c4043;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #5f6368;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1a73e8;
}

.footer-divider {
    border-color: #dadce0;
    margin: 32px 0 16px;
}

.footer-copyright {
    color: #5f6368;
    margin: 0;
    font-size: 14px;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

.footer-payment span {
    color: #5f6368;
    font-size: 14px;
}

.footer-payment i {
    font-size: 20px;
    color: #5f6368;
    transition: color 0.2s ease;
}

.footer-payment i:hover {
    color: #1a73e8;
}

/* Desktop - Show mega menu on click only */
@media (min-width: 769px) {
    .mega-menu {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
    
    .mega-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        border: 1px solid #ddd;
        background: #f8f8f8;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar-container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .navbar-menu {
        gap: 24px;
    }
    
    .mega-menu {
        min-width: 600px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 16px;
        height: 56px;
    }
    
    .mega-menu {
        opacity: 0;
        visibility: hidden;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
    max-width: 100%;
        left: 50%;
        margin-left: -50vw;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        z-index: 1000;
        background: #ffffff;
    }
    
    .mega-menu.show {
        opacity: 1;
        visibility: visible;
        display: block;
        margin-left: 0 ;
        margin-right: 0;
    }
    
    .mega-menu-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
        max-width: 100%;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mega-menu-column {
        width: 100%;
        margin-bottom: 16px;
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .mega-menu-column h4 {
        font-size: 16px;
        font-weight: 500;
        color: #3c4043;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: none;
    }
    
    .product-item {
        display: flex;
        align-items: center;
        padding: 8px 0;
        text-decoration: none;
        color: #3c4043;
        transition: background-color 0.2s ease;
        visibility: visible;
        opacity: 1;
        width: 100%;
    }
    
    .product-item:hover {
        background-color: #f8f9fa;
        border-radius: 4px;
    }
    
    .product-icon {
        width: 24px;
        height: 24px;
        margin-right: 12px;
        flex-shrink: 0;
    }
    
    .product-text {
        flex: 1;
    }
    
    .product-text h5 {
        font-size: 14px;
        font-weight: 500;
        color: #3c4043;
        margin: 0 0 4px 0;
    }
    
    .product-text p {
        font-size: 12px;
        color: #5f6368;
        margin: 0;
    }
    
    .navbar-menu {
        position: static;
        transform: none;
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #dadce0;
        padding: 16px 0;
        display: none;
    }
    
    .navbar-menu.show {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 16px;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid #f1f3f4;
    }
    
    .nav-link:hover {
        background-color: #f8f9fa;
        padding: 12px 16px;
    }
    
    .mega-menu {
        position: static;
        transform: none;
        min-width: auto;
        box-shadow: none;
        margin-top: 0;
        padding: 16px;
        border-radius: 0;
        border-top: 1px solid #f1f3f4;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .mega-menu-column h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .product-item {
        padding: 12px 0;
    }
    
    .navbar-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 16px;
    }
    
    .btn-outline,
    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
    
    .hero-section {
        padding: 40px 0;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .feature-card h4 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .testimonial-card {
        padding: 24px 16px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .pricing-card {
        padding: 24px 16px;
    }
    
    .pricing-header h4 {
        font-size: 20px;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 280px;
        margin: 8px 0;
    }
    
    .footer {
        padding: 32px 0 16px;
    }
    
    .footer-brand h5 {
        font-size: 18px;
    }
    
    .footer-brand p {
        font-size: 14px;
    }
    
    .footer-links h6 {
        font-size: 14px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-payment {
        justify-content: center;
        margin-top: 16px;
        flex-wrap: wrap;
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .navbar-container {
        padding: 0 12px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 20px 12px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-card h4 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 20px 12px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .author-info h5 {
        font-size: 14px;
    }
    
    .author-info p {
        font-size: 12px;
    }
    
    .pricing-card {
        padding: 20px 12px;
    }
    
    .pricing-header h4 {
        font-size: 18px;
    }
    
    .amount {
        font-size: 32px;
    }
    
    .currency {
        font-size: 16px;
    }
    
    .period {
        font-size: 14px;
    }
    
    .pricing-features li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .footer {
        padding: 24px 0 12px;
    }
    
    .footer-brand h5 {
        font-size: 16px;
    }
    
    .footer-brand p {
        font-size: 13px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #5f6368;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.testimonial-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1a73e8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1557b0;
}
.market-btn {
    display: inline-block;
    padding: 0.3125rem 0.875rem;
    padding-left: 2.8125rem;
    -webkit-transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    border: 1px solid #e7e7e7;
    background-position: center left 0.75rem;
    background-color: #fff;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    text-decoration: none;
}

.market-btn .market-button-title {
    display: block;
    color: #222;
    font-size: 1.125rem;
}

.market-btn .market-button-subtitle {
    display: block;
    margin-bottom: -0.25rem;
    color: #888;
    font-size: 0.75rem;
}

.market-btn:hover {
    background-color: #f7f7f7;
    text-decoration: none;
}

.google-btn {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPHBvbHlnb24gc3R5bGU9ImZpbGw6IzVDREFERDsiIHBvaW50cz0iMjkuNTMsMCAyOS41MywyNTEuNTA5IDI5LjUzLDUxMiAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNCREVDQzQ7IiBwb2ludHM9IjM2OS4wNjcsMTgwLjU0NyAyNjIuMTc1LDExOS40NjcgMjkuNTMsMCAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNEQzY4QTE7IiBwb2ludHM9IjI5LjUzLDUxMiAyOS41Myw1MTIgMjYyLjE3NSwzODMuNTUxIDM2OS4wNjcsMzIyLjQ3IDI5OS4wMDQsMjUxLjUwOSAiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0ZGQ0E5NjsiIGQ9Ik0zNjkuMDY3LDE4MC41NDdsLTcwLjA2Myw3MC45NjFsNzAuMDYzLDcwLjk2MWwxMDguNjg4LTYyLjg3N2M2LjI4OC0zLjU5Myw2LjI4OC0xMS42NzcsMC0xNS4yNyAgTDM2OS4wNjcsMTgwLjU0N3oiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}

.windows-btn {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDQ4MCA0ODAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4MCA0ODA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cGF0aCBkPSJNMC4xNzYsMjI0TDAuMDAxLDY3Ljk2M2wxOTItMjYuMDcyVjIyNEgwLjE3NnogTTIyNC4wMDEsMzcuMjQxTDQ3OS45MzcsMHYyMjRIMjI0LjAwMVYzNy4yNDF6IE00NzkuOTk5LDI1NmwtMC4wNjIsMjI0ICAgbC0yNTUuOTM2LTM2LjAwOFYyNTZINDc5Ljk5OXogTTE5Mi4wMDEsNDM5LjkxOEwwLjE1Nyw0MTMuNjIxTDAuMTQ3LDI1NmgxOTEuODU0VjQzOS45MTh6IiBmaWxsPSIjMDBiY2YyIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.apple-btn {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiMyZTJlMmUiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}

section.hesappos-section {
    background: #f8f9fa;
}

/* Help Page Styles */
.help-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.help-search {
    background: white;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.help-search input {
    border: none;
    outline: none;
    font-size: 18px;
    width: 100%;
}

.help-search button {
    background: #667eea;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    margin-left: 10px;
}

.help-categories {
    padding: 80px 0;
}

.help-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: none;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.help-card-icon i {
    font-size: 24px;
    color: white;
}

.faq-section {
    background: #f8f9fc;
    padding: 80px 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-header {
    padding: 20px;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-content {
    padding: 0 20px 20px;
    display: none;
}

.faq-content.show {
    display: block;
}

.contact-section {
    padding: 80px 0;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.breadcrumb {
    background: none;
    padding: 20px 0;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.help-detail-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.help-content {
    padding: 0px 0;
}

/* Left Sidebar */
.help-sidebar-left {
    background: #f8f9fc;
    border-radius: 8px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header h5 {
    color: #1a73e8;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.menu-item:hover {
    background: #e8f0fe;
}

.menu-item.active {
    background: #1a73e8;
    color: white;
}

.menu-number {
    background: #1a73e8;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    margin-right: 10px;
    flex-shrink: 0;
}

.menu-item.active .menu-number {
    background: white;
    color: #1a73e8;
}

.menu-content {
    flex: 1;
}

.menu-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.menu-subtitle {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.3;
}

/* Top Navigation */
.help-top-nav {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    color: #3c4043;
    font-size: 14px;
}

.nav-item.active {
    color: #1a73e8;
    font-weight: 500;
}

.nav-separator {
    color: #dadce0;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    position: relative;
}

.search-input {
    background: #f8f9fc;
    border: 1px solid #dadce0;
    border-radius: 20px;
    padding: 6px 35px 6px 12px;
    width: 250px;
    font-size: 13px;
}

.search-input:focus {
    outline: none;
    border-color: #1a73e8;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #5f6368;
    font-size: 12px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    background: #f8f9fc;
    border: 1px solid #dadce0;
    border-radius: 6px;
    padding: 6px;
    color: #3c4043;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #e8f0fe;
    border-color: #1a73e8;
    color: #1a73e8;
}

.notification-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ea4335;
    color: white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f8f9fc;
    border: 1px solid #dadce0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-profile:hover {
    background: #e8f0fe;
    border-color: #1a73e8;
}

.user-profile i:first-child {
    font-size: 16px;
    color: #1a73e8;
}

.user-profile span {
    font-size: 13px;
    font-weight: 500;
}

.user-profile i:last-child {
    font-size: 10px;
    color: #5f6368;
}

/* Content Header */
.content-header {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.content-header h1 {
    color: #1a73e8;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.content-header p {
    color: #5f6368;
    font-size: 14px;
    margin: 0;
}

/* Right Sidebar */
.help-sidebar-right {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h6 {
    color: #1a73e8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-nav li {
    margin-bottom: 8px;
}

.content-nav a {
    color: #3c4043;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.content-nav a:hover,
.content-nav a.active {
    background: #1a73e8;
    color: white;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: #f8f9fc;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 12px;
    color: #3c4043;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-align: left;
}

.quick-btn:hover {
    background: #e8f0fe;
    border-color: #1a73e8;
    color: #1a73e8;
}

.quick-btn i {
    color: #1a73e8;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-item {
    background: #f8f9fc;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recent-updates {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.update-item:hover {
    background: #f8f9fc;
}

.update-icon {
    width: 32px;
    height: 32px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-size: 14px;
}

.update-content {
    flex: 1;
}

.update-title {
    font-size: 13px;
    font-weight: 500;
    color: #3c4043;
    margin-bottom: 2px;
}

.update-time {
    font-size: 11px;
    color: #5f6368;
}

.help-main-content {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.help-step {
    background: #f8f9fc;
    border-left: 4px solid #1a73e8;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.help-step h6 {
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 10px;
}

.help-tip {
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border: 1px solid #1a73e8;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.help-tip .tip-icon {
    color: #1a73e8;
    font-size: 24px;
    margin-right: 10px;
}

.help-warning {
    background: linear-gradient(135deg, #fef7e0 0%, #fff8e1 100%);
    border: 1px solid #f9ab00;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.help-warning .warning-icon {
    color: #f9ab00;
    font-size: 24px;
    margin-right: 10px;
}

.help-code {
    background: #2d3748;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    margin: 20px 0;
    overflow-x: auto;
}

.help-image {
    text-align: center;
    margin: 30px 0;
}

.help-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.help-actions {
    background: #f8f9fc;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.help-actions h5 {
    color: #1a73e8;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    background: white;
    border: 2px solid #1a73e8;
    color: #1a73e8;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    background: #1a73e8;
    color: white;
}

.action-btn.primary {
    background: #1a73e8;
    color: white;
}

.action-btn.primary:hover {
    background: #1557b0;
}

.help-meta {
    background: #f8f9fc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.help-meta .meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.help-meta .meta-item i {
    color: #1a73e8;
    margin-right: 10px;
    width: 20px;
}

.help-meta .meta-item:last-child {
    margin-bottom: 0;
}

.help-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.help-tag {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .help-sidebar-left {
        position: static;
        margin-bottom: 15px;
    }
    
    .help-main-content {
        padding: 15px;
    }
    
    .help-top-nav {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .top-nav-right {
        justify-content: space-between;
    }
    
    .search-input {
        width: 100%;
    }
    
    .nav-actions {
        gap: 6px;
    }
    
    .user-profile span {
        display: none;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        justify-content: center;
    }
}
.bg-hesappos {
    box-shadow: 0 -5px 7.5px #00000013;
}
.navbar-light .navbar-nav .nav-link {
    color: #222;
    font-weight: 400;
    font-size: 16px;
}
.hesapposhead {
    background: #f6f6f64d;
}
h1.hesappos-4 {
    background: linear-gradient(100deg, #7209d4, #2832d4 33%, #00a5b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
p.hesapposlead {
    margin-bottom: .5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #54585c;
    font-size: 1.2rem;
}
.windows-btn {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDQ4MCA0ODAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4MCA0ODA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cGF0aCBkPSJNMC4xNzYsMjI0TDAuMDAxLDY3Ljk2M2wxOTItMjYuMDcyVjIyNEgwLjE3NnogTTIyNC4wMDEsMzcuMjQxTDQ3OS45MzcsMHYyMjRIMjI0LjAwMVYzNy4yNDF6IE00NzkuOTk5LDI1NmwtMC4wNjIsMjI0ICAgbC0yNTUuOTM2LTM2LjAwOFYyNTZINDc5Ljk5OXogTTE5Mi4wMDEsNDM5LjkxOEwwLjE1Nyw0MTMuNjIxTDAuMTQ3LDI1NmgxOTEuODU0VjQzOS45MTh6IiBmaWxsPSIjMDBiY2YyIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.market-btn {
    display: inline-block;
    padding: 0.3125rem 0.875rem;
    padding-left: 2.8125rem;
    -webkit-transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    border: 1px solid #e7e7e7;
    background-position: center left 0.75rem;
    background-color: #fff;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    text-decoration: none;
}
.market-btn .market-button-title {
    display: block;
    color: #222;
    font-size: 1.125rem;
}
.market-btn .market-button-subtitle {
    display: block;
    margin-bottom: -0.25rem;
    color: #888;
    font-size: 0.75rem;
}
.market-btn:hover {
    background-color: #f7f7f7;
    text-decoration: none;
}
/* Google Workspace Style Website */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #3c4043;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* hesappos Navbar */
.hesappos-navbar {
    background: #ffffff;
    border-bottom: 1px solid #dadce0;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    position: relative;
    z-index: 1000;
    min-height: 64px;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 64px;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
}

.hesappos-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hesappos-text {
    font-size: 22px;
    font-weight: 400;
    color: #5f6368;
}

.workspace-text {
    font-size: 22px;
    font-weight: 400;
    color: #3c4043;
}

/* Navigation Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item {
    position: relative;
}

.nav-item.dropdown {
    position: static;
}

.nav-link {
    color: #3c4043;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: #1a73e8;
    background-color: #f8f9fa;
    padding: 8px 12px;
}

.nav-link.active {
    color: #1a73e8;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 6px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.2s ease;
    color: #5f6368;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 0;
    border: none;
    padding: 0;
    width: 100%;
    max-width: 100%;
    left: 50%;
    margin-left: -50vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 13px;
    display: none;
}
div#mega-menu {
    border: 1px solid #ddd;
}
@media (max-width: 768px) {
    div#mega-menu {
        border: none;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
  }

.mega-menu.show {
    opacity: 1;
    visibility: visible;
    display: block;
    background: #f8f8f8;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
}

.mega-menu-column h4 {
    font-size: 16px;
    font-weight: 500;
    color: #3c4043;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: none;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.product-item:hover {
    background-color: #f8f9fa;
}

.product-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.gmail-icon { background-color: #fce8e6; }
.meet-icon { background-color: #e6f4ea; }
.chat-icon { background-color: #e6f4ea; }
.drive-icon { background-color: #e8f0fe; }
.docs-icon { background-color: #e8f0fe; }
.sheets-icon { background-color: #e6f4ea; }
.gemini-icon { background-color: #e8f0fe; }
.calendar-icon { background-color: #fce8e6; }

.product-info h5 {
    font-size: 14px;
    font-weight: 500;
    color: #3c4043;
    margin-bottom: 2px;
}

.product-info p {
    font-size: 12px;
    color: #5f6368;
    margin: 0;
}

/* CTA Buttons */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-outline {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    transition: all 0.2s ease;
    background: transparent;
}

.btn-outline:hover {
    background-color: #f8f9fa;
    border-color: #1a73e8;
}

.btn-primary {
    background: linear-gradient(135deg, #194473 0%, #071d36 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #1557b0;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-buttons .btn-primary {
    background: #1a73e8;
    color: white;
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: #1557b0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.section-description {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.feature-icon svg {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: #667eea;
}

.feature-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #2d3748;
}

.feature-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.feature-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.feature-link:hover::after {
    width: 100%;
}

.feature-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonial-card {
    background: white;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #dadce0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 4px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    color: #fbbc04;
    margin-bottom: 16px;
    font-size: 16px;
}

.testimonial-content p {
    font-style: italic;
    color: #5f6368;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #5f6368;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #3c4043;
}

.author-info p {
    color: #5f6368;
    margin: 0;
    font-size: 14px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #dadce0;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 2px 4px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.pricing-card.featured {
    border: 2px solid #1a73e8;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a73e8;
    color: white;
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.pricing-header h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #3c4043;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
}

.currency {
    font-size: 20px;
    font-weight: 400;
    color: #5f6368;
}

.amount {
    font-size: 48px;
    font-weight: 400;
    color: #3c4043;
}

.period {
    font-size: 16px;
    color: #5f6368;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #3c4043;
}

.pricing-features i {
    color: #34a853;
    font-size: 16px;
}

.pricing-card .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    display: block;
}

.pricing-card .btn-primary {
    background: #1a73e8;
    color: white;
    border: none;
}

.pricing-card .btn-primary:hover {
    background: #1557b0;
}

.pricing-card .btn-outline {
    background: transparent;
    color: #1a73e8;
    border: 1px solid #dadce0;
}

.pricing-card .btn-outline:hover {
    background: #f8f9fa;
    border-color: #1a73e8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin: 0 8px;
}

.cta-section .btn-primary {
    background: #1a73e8;
    color: white;
    border: none;
}

.cta-section .btn-primary:hover {
    background: #1557b0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: #3c4043;
    padding: 48px 0 24px;
    border-top: 1px solid #dadce0;
}

.footer-brand h5 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #3c4043;
}

.footer-brand p {
    color: #5f6368;
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #dadce0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f6368;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #1a73e8;
    color: white;
}

.footer-links h6 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #3c4043;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #5f6368;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1a73e8;
}

.footer-divider {
    border-color: #dadce0;
    margin: 32px 0 16px;
}

.footer-copyright {
    color: #5f6368;
    margin: 0;
    font-size: 14px;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

.footer-payment span {
    color: #5f6368;
    font-size: 14px;
}

.footer-payment i {
    font-size: 20px;
    color: #5f6368;
    transition: color 0.2s ease;
}

.footer-payment i:hover {
    color: #1a73e8;
}

/* Desktop - Show mega menu on click only */
@media (min-width: 769px) {
    .mega-menu {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
    
    .mega-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        border: 1px solid #ddd;
        background: #f8f8f8;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar-container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .navbar-menu {
        gap: 24px;
    }
    
    .mega-menu {
        min-width: 600px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 16px;
        height: 56px;
    }
    
    .mega-menu {
        opacity: 0;
        visibility: hidden;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
    max-width: 100%;
        left: 50%;
        margin-left: -50vw;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 0;
        margin-top: 0;
        padding: 0;
        z-index: 1000;
        background: #ffffff;
    }
    
    .mega-menu.show {
        opacity: 1;
        visibility: visible;
        display: block;
        margin-left: 0 ;
        margin-right: 0;
    }
    
    .mega-menu-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
        max-width: 100%;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mega-menu-column {
        width: 100%;
        margin-bottom: 16px;
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .mega-menu-column h4 {
        font-size: 16px;
        font-weight: 500;
        color: #3c4043;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: none;
    }
    
    .product-item {
        display: flex;
        align-items: center;
        padding: 8px 0;
        text-decoration: none;
        color: #3c4043;
        transition: background-color 0.2s ease;
        visibility: visible;
        opacity: 1;
        width: 100%;
    }
    
    .product-item:hover {
        background-color: #f8f9fa;
        border-radius: 4px;
    }
    
    .product-icon {
        width: 24px;
        height: 24px;
        margin-right: 12px;
        flex-shrink: 0;
    }
    
    .product-text {
        flex: 1;
    }
    
    .product-text h5 {
        font-size: 14px;
        font-weight: 500;
        color: #3c4043;
        margin: 0 0 4px 0;
    }
    
    .product-text p {
        font-size: 12px;
        color: #5f6368;
        margin: 0;
    }
    
    .navbar-menu {
        position: static;
        transform: none;
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        width: 100%;
        background: white;
        border-top: 1px solid #dadce0;
        padding: 16px 0;
        display: none;
    }
    
    .navbar-menu.show {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 16px;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid #f1f3f4;
    }
    
    .nav-link:hover {
        background-color: #f8f9fa;
        padding: 12px 16px;
    }
    
    .mega-menu {
        position: static;
        transform: none;
        min-width: auto;
        box-shadow: none;
        margin-top: 0;
        padding: 16px;
        border-radius: 0;
        border-top: 1px solid #f1f3f4;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .mega-menu-column h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .product-item {
        padding: 12px 0;
    }
    
    .navbar-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 16px;
    }
    
    .btn-outline,
    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }
    
    .hero-section {
        padding: 40px 0;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .feature-card h4 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .testimonial-card {
        padding: 24px 16px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .pricing-card {
        padding: 24px 16px;
    }
    
    .pricing-header h4 {
        font-size: 20px;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 280px;
        margin: 8px 0;
    }
    
    .footer {
        padding: 32px 0 16px;
    }
    
    .footer-brand h5 {
        font-size: 18px;
    }
    
    .footer-brand p {
        font-size: 14px;
    }
    
    .footer-links h6 {
        font-size: 14px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-payment {
        justify-content: center;
        margin-top: 16px;
        flex-wrap: wrap;
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .navbar-container {
        padding: 0 12px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 20px 12px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-card h4 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 20px 12px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .author-info h5 {
        font-size: 14px;
    }
    
    .author-info p {
        font-size: 12px;
    }
    
    .pricing-card {
        padding: 20px 12px;
    }
    
    .pricing-header h4 {
        font-size: 18px;
    }
    
    .amount {
        font-size: 32px;
    }
    
    .currency {
        font-size: 16px;
    }
    
    .period {
        font-size: 14px;
    }
    
    .pricing-features li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .footer {
        padding: 24px 0 12px;
    }
    
    .footer-brand h5 {
        font-size: 16px;
    }
    
    .footer-brand p {
        font-size: 13px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #5f6368;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.testimonial-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1a73e8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1557b0;
}
.market-btn {
    display: inline-block;
    padding: 0.3125rem 0.875rem;
    padding-left: 2.8125rem;
    -webkit-transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    border: 1px solid #e7e7e7;
    background-position: center left 0.75rem;
    background-color: #fff;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    text-decoration: none;
}

.market-btn .market-button-title {
    display: block;
    color: #222;
    font-size: 1.125rem;
}

.market-btn .market-button-subtitle {
    display: block;
    margin-bottom: -0.25rem;
    color: #888;
    font-size: 0.75rem;
}

.market-btn:hover {
    background-color: #f7f7f7;
    text-decoration: none;
}

.google-btn {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPHBvbHlnb24gc3R5bGU9ImZpbGw6IzVDREFERDsiIHBvaW50cz0iMjkuNTMsMCAyOS41MywyNTEuNTA5IDI5LjUzLDUxMiAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNCREVDQzQ7IiBwb2ludHM9IjM2OS4wNjcsMTgwLjU0NyAyNjIuMTc1LDExOS40NjcgMjkuNTMsMCAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNEQzY4QTE7IiBwb2ludHM9IjI5LjUzLDUxMiAyOS41Myw1MTIgMjYyLjE3NSwzODMuNTUxIDM2OS4wNjcsMzIyLjQ3IDI5OS4wMDQsMjUxLjUwOSAiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0ZGQ0E5NjsiIGQ9Ik0zNjkuMDY3LDE4MC41NDdsLTcwLjA2Myw3MC45NjFsNzAuMDYzLDcwLjk2MWwxMDguNjg4LTYyLjg3N2M2LjI4OC0zLjU5Myw2LjI4OC0xMS42NzcsMC0xNS4yNyAgTDM2OS4wNjcsMTgwLjU0N3oiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}

.windows-btn {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDQ4MCA0ODAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4MCA0ODA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cGF0aCBkPSJNMC4xNzYsMjI0TDAuMDAxLDY3Ljk2M2wxOTItMjYuMDcyVjIyNEgwLjE3NnogTTIyNC4wMDEsMzcuMjQxTDQ3OS45MzcsMHYyMjRIMjI0LjAwMVYzNy4yNDF6IE00NzkuOTk5LDI1NmwtMC4wNjIsMjI0ICAgbC0yNTUuOTM2LTM2LjAwOFYyNTZINDc5Ljk5OXogTTE5Mi4wMDEsNDM5LjkxOEwwLjE1Nyw0MTMuNjIxTDAuMTQ3LDI1NmgxOTEuODU0VjQzOS45MTh6IiBmaWxsPSIjMDBiY2YyIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.apple-btn {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiMyZTJlMmUiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}

section.hesappos-section {
    background: #f8f9fa;
}

/* Help Page Styles */
.help-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.help-search {
    background: white;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.help-search input {
    border: none;
    outline: none;
    font-size: 18px;
    width: 100%;
}

.help-search button {
    background: #667eea;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    margin-left: 10px;
}

.help-categories {
    padding: 80px 0;
}

.help-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: none;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.help-card-icon i {
    font-size: 24px;
    color: white;
}

.faq-section {
    background: #f8f9fc;
    padding: 80px 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-header {
    padding: 20px;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-content {
    padding: 0 20px 20px;
    display: none;
}

.faq-content.show {
    display: block;
}

.contact-section {
    padding: 80px 0;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.breadcrumb {
    background: none;
    padding: 20px 0;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Help Detail Page Styles */
.help-detail-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.help-content {
    padding: 0px 0;
}

/* Left Sidebar */
.help-sidebar-left {
    background: #f8f9fc;
    border-radius: 8px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header h5 {
    color: #1a73e8;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.menu-item:hover {
    background: #e8f0fe;
}

.menu-item.active {
    background: #1a73e8;
    color: white;
}

.menu-number {
    background: #1a73e8;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    margin-right: 10px;
    flex-shrink: 0;
}

.menu-item.active .menu-number {
    background: white;
    color: #1a73e8;
}

.menu-content {
    flex: 1;
}

.menu-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    font-weight: 600;
}

.menu-subtitle {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.3;
}

/* Top Navigation */
.help-top-nav {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    color: #3c4043;
    font-size: 14px;
}

.nav-item.active {
    color: #1a73e8;
    font-weight: 500;
}

.nav-separator {
    color: #dadce0;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    position: relative;
}

.search-input {
    background: #f8f9fc;
    border: 1px solid #dadce0;
    border-radius: 20px;
    padding: 6px 35px 6px 12px;
    width: 250px;
    font-size: 13px;
}

.search-input:focus {
    outline: none;
    border-color: #1a73e8;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #5f6368;
    font-size: 12px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    background: #f8f9fc;
    border: 1px solid #dadce0;
    border-radius: 6px;
    padding: 6px;
    color: #3c4043;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #e8f0fe;
    border-color: #1a73e8;
    color: #1a73e8;
}

.notification-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ea4335;
    color: white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f8f9fc;
    border: 1px solid #dadce0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-profile:hover {
    background: #e8f0fe;
    border-color: #1a73e8;
}

.user-profile i:first-child {
    font-size: 16px;
    color: #1a73e8;
}

.user-profile span {
    font-size: 13px;
    font-weight: 500;
}

.user-profile i:last-child {
    font-size: 10px;
    color: #5f6368;
}

/* Content Header */
.content-header {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.content-header h1 {
    color: #1a73e8;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.content-header p {
    color: #5f6368;
    font-size: 14px;
    margin: 0;
}

/* Right Sidebar */
.help-sidebar-right {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h6 {
    color: #1a73e8;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-nav li {
    margin-bottom: 8px;
}

.content-nav a {
    color: #3c4043;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.content-nav a:hover,
.content-nav a.active {
    background: #1a73e8;
    color: white;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-btn {
    background: #f8f9fc;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 12px;
    color: #3c4043;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-align: left;
}

.quick-btn:hover {
    background: #e8f0fe;
    border-color: #1a73e8;
    color: #1a73e8;
}

.quick-btn i {
    color: #1a73e8;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-item {
    background: #f8f9fc;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recent-updates {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.update-item:hover {
    background: #f8f9fc;
}

.update-icon {
    width: 32px;
    height: 32px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-size: 14px;
}

.update-content {
    flex: 1;
}

.update-title {
    font-size: 13px;
    font-weight: 500;
    color: #3c4043;
    margin-bottom: 2px;
}

.update-time {
    font-size: 11px;
    color: #5f6368;
}

.help-main-content {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.help-step {
    background: #f8f9fc;
    border-left: 4px solid #1a73e8;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.help-step h6 {
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 10px;
}

.help-tip {
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border: 1px solid #1a73e8;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.help-tip .tip-icon {
    color: #1a73e8;
    font-size: 24px;
    margin-right: 10px;
}

.help-warning {
    background: linear-gradient(135deg, #fef7e0 0%, #fff8e1 100%);
    border: 1px solid #f9ab00;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.help-warning .warning-icon {
    color: #f9ab00;
    font-size: 24px;
    margin-right: 10px;
}

.help-code {
    background: #2d3748;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    margin: 20px 0;
    overflow-x: auto;
}

.help-image {
    text-align: center;
    margin: 30px 0;
}

.help-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.help-actions {
    background: #f8f9fc;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.help-actions h5 {
    color: #1a73e8;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    background: white;
    border: 2px solid #1a73e8;
    color: #1a73e8;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    background: #1a73e8;
    color: white;
}

.action-btn.primary {
    background: #1a73e8;
    color: white;
}

.action-btn.primary:hover {
    background: #1557b0;
}

.help-meta {
    background: #f8f9fc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.help-meta .meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.help-meta .meta-item i {
    color: #1a73e8;
    margin-right: 10px;
    width: 20px;
}

.help-meta .meta-item:last-child {
    margin-bottom: 0;
}

.help-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.help-tag {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .help-sidebar-left {
        position: static;
        margin-bottom: 15px;
    }
    
    .help-main-content {
        padding: 15px;
    }
    
    .help-top-nav {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .top-nav-right {
        justify-content: space-between;
    }
    
    .search-input {
        width: 100%;
    }
    
    .nav-actions {
        gap: 6px;
    }
    
    .user-profile span {
        display: none;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn {
        justify-content: center;
    }
}
.bg-hesappos {
    box-shadow: 0 -5px 7.5px #00000013;
}
.navbar-light .navbar-nav .nav-link {
    color: #222;
    font-weight: 400;
    font-size: 16px;
}
.hesapposhead {
    background: #f6f6f64d;
}
h1.hesappos-4 {
    background: linear-gradient(100deg, #7209d4, #2832d4 33%, #00a5b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
p.hesapposlead {
    margin-bottom: .5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #54585c;
    font-size: 1.2rem;
}
.windows-btn {
    background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDQ4MCA0ODAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4MCA0ODA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cGF0aCBkPSJNMC4xNzYsMjI0TDAuMDAxLDY3Ljk2M2wxOTItMjYuMDcyVjIyNEgwLjE3NnogTTIyNC4wMDEsMzcuMjQxTDQ3OS45MzcsMHYyMjRIMjI0LjAwMVYzNy4yNDF6IE00NzkuOTk5LDI1NmwtMC4wNjIsMjI0ICAgbC0yNTUuOTM2LTM2LjAwOFYyNTZINDc5Ljk5OXogTTE5Mi4wMDEsNDM5LjkxOEwwLjE1Nyw0MTMuNjIxTDAuMTQ3LDI1NmgxOTEuODU0VjQzOS45MTh6IiBmaWxsPSIjMDBiY2YyIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.market-btn {
    display: inline-block;
    padding: 0.3125rem 0.875rem;
    padding-left: 2.8125rem;
    -webkit-transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    border: 1px solid #e7e7e7;
    background-position: center left 0.75rem;
    background-color: #fff;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    text-decoration: none;
}
.market-btn .market-button-title {
    display: block;
    color: #222;
    font-size: 1.125rem;
}
.market-btn .market-button-subtitle {
    display: block;
    margin-bottom: -0.25rem;
    color: #888;
    font-size: 0.75rem;
}
.market-btn:hover {
    background-color: #f7f7f7;
    text-decoration: none;
}
@media (min-width: 992px) {
    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0;
        left: 0;
    }
}
.welcome-icon {
    width: 35px;
    height: 35px;
    background: #1a73e8;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}




.hesappos-features-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.hesappos-features-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hesappos-features-section .section-title {
    font-weight: 600;
    color: #082853;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Google Sans', 'Roboto', sans-serif;
}

.hesappos-features-section .section-description {
    font-size: 1.1rem;
    color: #5f6368;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

.hesappos-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hesappos-card {
    background: #f8f9fa;
    border: 2px solid #dadce0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.hesappos-card:hover {
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 2px 6px 2px rgba(60,64,67,0.15);
    transform: translateY(-2px);
}

.hesappos-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    margin: 0 auto 1.5rem auto;
    color: #082853;
}

.hesappos-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #082853;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Google Sans', 'Roboto', sans-serif;
}

.hesappos-description {
    color: #5f6368;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Google hesappos Style CTA Section */
.hesappos-cta-section {
    padding: 4rem 0;
    background: #f8f9fa;
    border-top: 1px solid #dadce0;
}

.hesappos-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hesappos-cta-title {
    font-size: 2rem;
    font-weight: 400;
    color: #202124;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Google Sans', 'Roboto', sans-serif;
}

.hesappos-cta-description {
    font-size: 1.1rem;
    color: #5f6368;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-family: 'Roboto', sans-serif;
}

.hesappos-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hesappos-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.hesappos-btn.primary {
    background: #1a73e8;
    color: white;
    border-color: #1a73e8;
}

.hesappos-btn.primary:hover {
    background: #1557b0;
    border-color: #1557b0;
    color: white;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.hesappos-btn.secondary {
    background: transparent;
    color: #1a73e8;
    border-color: #dadce0;
}

.hesappos-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #dadce0;
    color: #1a73e8;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hesappos-features-section .section-title {
        font-size: 2rem;
    }
    
    .hesappos-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hesappos-card {
        padding: 1.5rem;
    }
    
    .hesappos-cta-title {
        font-size: 1.5rem;
    }
    
    .hesappos-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hesappos-btn {
        width: 100%;
        max-width: 250px;
    }
}

.black-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.black-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.black-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.black-card:hover::before {
    opacity: 1;
}

.black-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 30, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.card-content {
    margin-bottom: 2rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.black-link {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.black-link:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateX(5px);
}

.black-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.black-link:hover i {
    transform: translateX(3px);
}

/* Siyah CTA Section */
.black-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.black-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.cta-description {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.black-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.black-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.black-btn:hover::before {
    left: 100%;
}

.black-btn.primary {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    border-color: transparent;
}

.black-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    color: white;
    text-decoration: none;
}

.black-btn.secondary {
    background: transparent;
    color: #4ecdc4;
    border-color: #4ecdc4;
}

.black-btn.secondary:hover {
    background: #4ecdc4;
    color: #0a0a0a;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .black-card {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .black-btn {
        width: 100%;
        max-width: 300px;
    }
}
.dark-section {
    position: relative;
    padding: 80px 50px;
    border-radius: 24px;
    background: radial-gradient(circle at top left, #161a1f, #0d0f12);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.new-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff4747, #ff8c00);
    color: #fff;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 71, 71, 0.5);
    text-transform: uppercase;
}

.dark-content {
    max-width: 800px;
}

.dark-title {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-subtitle {
    font-size: 20px;
    color: #c0c6cc;
    font-weight: 400;
    margin-bottom: 25px;
}

.dark-description {
    color: #a9b3bd;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.download-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1b1f25;
    color: #fff;
    padding: 16px 22px;
    border-radius: 16px;
    text-decoration: none;
    flex: 1;
    min-width: 100%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.download-btn:hover {
    transform: translateY(-5px);
    border-color: #00b4ff;
    box-shadow: 0 10px 25px rgba(0,180,255,0.3);
}

.btn-icon i {
    font-size: 30px;
}

.btn-content {
    display: flex;
    flex-direction: column;
}

.btn-subtitle {
    font-size: 12px;
    color: #9da3aa;
}

.btn-title {
    font-size: 16px;
    font-weight: 600;
}

.info-hint {
    margin-top: 30px;
    font-size: 14px;
    color: #8f9aa5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-hint i {
    color: #00b4ff;
    font-size: 18px;
}

.dark-button {
    margin-top: 40px;
    background: linear-gradient(90deg, #00b4ff, #0078ff);
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 180, 255, 0.3);
}

.dark-button:hover {
    background: linear-gradient(90deg, #0078ff, #00b4ff);
    transform: translateY(-3px);
}
section.hero-hesappos {
    background: radial-gradient(circle at top left, #161a1f, #0d0f12);
}
span.free {
    font-size: 17px;
    color: #fff;
    font-weight: 800;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    padding: 12px 0;
    border-top: 1px solid #e9ecef;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #6c757d;
}

.meta-item i {
    width: 16px;
    text-align: center;
}

.article-link {
    color: inherit;
    text-decoration: none;
}

.article-link:hover {
    color: #007bff;
    text-decoration: none;
}

.menu-item.active .article-link {
    color: #ffffff;
    font-weight: 600;
}

.help-main-content {
    line-height: 1.7;
}

.help-main-content h1,
.help-main-content h2,
.help-main-content h3,
.help-main-content h4,
.help-main-content h5,
.help-main-content h6 {
    margin-top: 24px;
    margin-bottom: 16px;
    color: #333;
}

.help-main-content p {
    margin-bottom: 16px;
}

.help-main-content ul,
.help-main-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.help-main-content li {
    margin-bottom: 8px;
}

.help-main-content blockquote {
    border-left: 4px solid #007bff;
    padding: 16px 20px;
    margin: 20px 0;
    background: #f8f9fa;
    border-radius: 0 4px 4px 0;
}

.help-main-content code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.help-main-content pre {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 4px;
    overflow-x: auto;
    margin: 16px 0;
}

.help-main-content pre code {
    background: none;
    padding: 0;
}

.help-main-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 16px 0;
}

.help-main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.help-main-content table th,
.help-main-content table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.help-main-content table th {
    background: #f8f9fa;
    font-weight: 600;
}
span.kisa_aciklama {
    font-size: 11px;
    display: inline-block;  
    max-width: 200px;        
    white-space: nowrap;    
    overflow: hidden;       
    text-overflow: ellipsis; 
}

/* Enhanced Voting Buttons */
.helpful-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 2px solid #10b981;
}

.helpful-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.helpful-btn.voted {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    cursor: not-allowed;
}

.not-helpful-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: 2px solid #ef4444;
}

.not-helpful-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.not-helpful-btn.voted {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border-color: #6b7280;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
    cursor: not-allowed;
}

.vote-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.vote-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Enhanced Action Buttons Layout */
.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.action-btn {
    background: white;
    border: 2px solid #1a73e8;
    color: #1a73e8;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.1), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    background: #1a73e8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
    text-decoration: none;
}

.action-btn i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.action-btn:hover i {
    transform: scale(1.1);
}

/* Vote Count Styling */
.vote-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 4px;
}

.helpful-btn .vote-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Voting */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-btn {
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
    }
    
    .vote-count {
        font-size: 11px;
        padding: 1px 6px;
    }
}

/* 🎨 Basit Oylama Butonları */
.action-buttons {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.action-buttons h3 {
    text-align: center;
    color: #495057;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Basit Buton Tasarımı */
.action-btn {
    background: white;
    border: 2px solid #dee2e6;
    color: #495057;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.action-btn i {
    font-size: 16px;
}

/* Faydalı Buton - Yeşil */
.helpful-btn {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.helpful-btn:hover {
    background: #218838;
    border-color: #218838;
    color: white;
}

.helpful-btn.voted {
    background: #28a745;
    cursor: not-allowed;
}

/* Faydalı Değil Buton - Kırmızı */
.not-helpful-btn {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.not-helpful-btn:hover {
    background: #c82333;
    border-color: #c82333;
    color: white;
}

.not-helpful-btn.voted {
    background: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
}

/* Paylaş Buton - Mavi */
.action-btn:not(.helpful-btn):not(.not-helpful-btn) {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.action-btn:not(.helpful-btn):not(.not-helpful-btn):hover {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
}

/* Oy Sayısı */
.vote-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 6px;
}

/* Devre Dışı Durum */
.vote-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .action-buttons {
        padding: 15px;
    }
    
    .action-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}
.pricing-hero {
    background: linear-gradient(135deg, #007bff 0%, #071d36 100%);
    color: white;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(-45deg);
}

.banner-badge {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: inline-block;
}

.pricing-card-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.price-display {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.small-muted {
    font-size: 0.875rem;
    opacity: 0.8;
}

.feature-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.comparison-table {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}
.hero-contact {
    background: linear-gradient(135deg, #194473 0%, #071d36 100%);
    position: relative;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contact-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-badge {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid #007bff;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Tablet Frame Styles */
.tablet-frame-container {
    position: relative;
    width: 100%;
    max-width: 526px;
}

.tablet-frame {
    position: relative;
    width: 100%;
    padding: 8px;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #000;
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Center Big Play Button */
.video-center-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-wrapper.playing .video-center-controls {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper.paused .video-center-controls {
    opacity: 1;
}

.big-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #000;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.big-play-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.big-play-btn:active {
    transform: scale(0.95);
}

/* Bottom Controls Bar */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6), transparent);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.video-wrapper.playing:not(:hover) .video-controls {
    opacity: 0;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

.video-control-btn {
    background: transparent;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
}

.video-control-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.video-control-btn:active {
    transform: scale(0.9);
}

/* Progress Bar Container */
.video-progress-container {
    flex: 1;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    margin: 0 8px;
}

.video-progress {
    width: 100%;
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    transition: height 0.2s ease;
}

.video-progress:hover {
    height: 8px;
}

.video-progress-bar {
    height: 100%;
    background: #ff0000;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
    z-index: 2;
}

.video-progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 14px;
    height: 14px;
    background: #ff0000;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-progress:hover .video-progress-bar::after {
    opacity: 1;
}

.video-progress-hover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    width: 0%;
    pointer-events: none;
    z-index: 1;
}

.video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    z-index: 3;
}

/* Controls Right Section */
.video-controls-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-time {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    min-width: 90px;
    text-align: right;
    font-family: 'Roboto', sans-serif;
}

/* Volume Control */
.volume-control {
    position: absolute;
    bottom: 60px;
    right: 16px;
    background: rgba(0, 0, 0, 0.85);
    padding: 12px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.volume-control.active {
    opacity: 1;
    pointer-events: auto;
}

.volume-slider {
    width: 60px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

@media (max-width: 768px) {
    .tablet-frame {
        padding: 6px;
        border-radius: 10px;
    }
    
    .video-wrapper {
        border-radius: 6px;
    }
    
    .big-play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .video-controls {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .video-control-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .video-time {
        font-size: 11px;
        min-width: 70px;
    }
    
    .volume-control {
        bottom: 55px;
        right: 12px;
    }
}

/* bg-primary gradient override */
.bg-primary {
    background: linear-gradient(135deg, #194473 0%, #071d36 100%) !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background: linear-gradient(135deg, #1a5a99 0%, #0a2842 100%) !important;
    opacity: 0.9;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #efefef;
}

/* Mobil Uyumluluk - Yatay Kaydırma Önleme */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }
    
    img, video, iframe, embed, object {
        max-width: 100%;
        height: auto;
    }
    
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .container, .container-fluid {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    [class*="col-"] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Tüm fixed ve absolute elementler için */
    [style*="position: fixed"],
    [style*="position:absolute"] {
        max-width: 100vw;
    }
}

/* Okunma Modu için Ek Düzenlemeler */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Pre ve code blokları için */
    pre, code {
        max-width: 100%;
        overflow-x: auto;
        word-wrap: break-word;
        white-space: pre-wrap;
    }
    
    /* Uzun kelimeler için */
    p, span, div, a, li, td, th {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}