* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
    padding: 20px;
    font-size: 16px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.header {
    background: #f5f5f5;
    color: #2c2c2c;
    padding: 50px 30px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

.header h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.header .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
    font-weight: 400;
}

.last-updated {
    background: #f0f0f0;
    padding: 12px 24px;
    border: 1px solid #ddd;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

/* Language Support Styles */
.language-support {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.language-support h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.2em;
    text-align: center;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.language-grid span {
    padding: 8px 12px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9em;
    color: #2c3e50;
}

/* Category Grid Styles */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.category-item {
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.category-item h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.1em;
}

.category-item p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Coming Soon Styles */
.coming-soon-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f8ff;
    border: 2px dashed #3498db;
    border-radius: 8px;
}

.coming-soon-section h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    text-align: center;
    font-size: 1.2em;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.coming-soon-item {
    padding: 15px;
    background-color: white;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    text-align: center;
    opacity: 0.8;
}

.coming-soon-item h4 {
    margin: 0 0 8px 0;
    color: #34495e;
    font-size: 1em;
}

.coming-soon-item p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.9em;
    font-style: italic;
}

/* Pricing Grid Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.pricing-plan {
    padding: 25px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.pricing-plan.premium {
    border-color: #3498db;
    transform: scale(1.02);
}

.pricing-plan.pro {
    border-color: #e74c3c;
    transform: scale(1.05);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.pricing-plan h3 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 1.3em;
}

.price {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.price .period {
    font-size: 0.5em;
    color: #7f8c8d;
    font-weight: normal;
}

.original-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 0.6em;
    margin-right: 10px;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-plan li {
    padding: 8px 0;
    color: #2c3e50;
    font-size: 0.95em;
    border-bottom: 1px solid #ecf0f1;
}

.pricing-plan li:last-child {
    border-bottom: none;
}

.content {
    padding: 50px 40px;
}

.section {
    margin-bottom: 50px;
    padding-bottom: 35px;
    border-bottom: 1px solid #f0f0f0;
}

.section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #999;
    letter-spacing: -0.3px;
}

.section-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
    font-weight: 400;
}

.subsection {
    margin: 25px 0;
    padding: 25px;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-left: 3px solid #888;
    border-radius: 4px;
}

.subsection-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.highlight {
    background: #f5f5f5;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #777;
    margin: 20px 0;
    border-radius: 4px;
}

.contact-info {
    background: #f7f7f7;
    padding: 30px;
    border: 1px solid #e0e0e0;
    text-align: left;
    margin-top: 30px;
    border-radius: 6px;
    line-height: 1.8;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #999;
    padding-bottom: 1px;
}

.contact-info a:hover {
    color: #000;
    border-bottom-color: #666;
}

ul {
    margin: 18px 0;
    padding-left: 0;
    list-style: none;
}

li {
    margin-bottom: 10px;
    color: #444;
    padding-left: 20px;
    position: relative;
}

li:before {
    content: '•';
    color: #888;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Additional styles for better readability */
strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Step-by-step instructions styling */
.section-content br {
    line-height: 2;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        margin: 0;
        border-radius: 6px;
    }

    .header {
        padding: 40px 25px;
    }

    .header h1 {
        font-size: 2.2rem;
    }

    .content {
        padding: 35px 25px;
    }

    .section-title {
        font-size: 1.3rem;
        padding-left: 15px;
    }

    .subsection {
        padding: 20px;
        margin: 20px 0;
    }

    .contact-info {
        padding: 25px;
        text-align: left;
    }
    
    .language-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }
    
    .language-grid span {
        padding: 6px 8px;
        font-size: 0.8em;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-item {
        padding: 15px;
    }
    
    .language-support {
         padding: 15px;
         margin-top: 20px;
     }
     
     .coming-soon-grid {
         grid-template-columns: 1fr;
         gap: 10px;
     }
     
     .coming-soon-item {
         padding: 12px;
     }
     
     .pricing-grid {
         grid-template-columns: 1fr;
         gap: 15px;
     }
     
     .pricing-plan {
         padding: 20px;
         transform: none !important;
     }
     
     .pricing-plan.premium,
     .pricing-plan.pro {
         transform: none !important;
     }
     
     .price {
         font-size: 1.5em;
     }
     
     .discount-badge {
         top: -8px;
         right: -8px;
         padding: 4px 8px;
         font-size: 0.7em;
     }
 }