/* Common Styles for All Pages */
:root {
    --primary-color: #CC0000;
    --secondary-color: #6C757D;
    --background-light: #F8F9FA;
    --text-dark: #212529;
    --text-muted: #6B7280;
    --white-background: #FFFFFF;
    --border-color: #E5E7EB;
    --success-color: #28a745;
    --error-color: #dc3545;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: var(--white-background);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--text-dark);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 40px 0;
    margin-top: 40px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Policy Page Styles */
.policy-header, .page-header {
    text-align: center;
    margin: 40px 0;
}

.policy-title, .page-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.policy-subtitle, .page-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.policy-content {
    background-color: var(--white-background);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 50px;
}

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

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

.policy-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.policy-section h3 {
    font-size: 20px;
    margin: 20px 0 15px;
    color: var(--text-dark);
}

.policy-section p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.policy-section ul, .policy-section ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-section ul li, .policy-section ol li {
    margin-bottom: 10px;
}

.policy-date {
    margin-top: 40px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

.policy-toc {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.policy-toc h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.policy-toc ul {
    list-style-type: none;
    padding-left: 0;
}

.policy-toc ul li {
    margin-bottom: 8px;
}

.policy-toc ul li a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.policy-toc ul li a:hover {
    color: #AA0000;
    text-decoration: underline;
}

.back-to-top {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    z-index: 99;
}

.back-to-top:hover {
    background-color: #AA0000;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        padding: 8px 15px;
    }
}

/* Script Details Layout */
.script-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    background-color: var(--white-background);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.script-main-content {
    max-width: 800px;
}

.script-sidebar {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    align-self: start;
}

/* Typography */
.script-title {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.script-title span {
    color: var(--text-dark);
}

.script-tagline {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
}

/* Feature List */
.feature-list {
    margin-bottom: 30px;
}

.feature-list h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-list ul {
    list-style-type: none;
    padding-left: 0;
}

.feature-list ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-list ul li::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f101';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* Screenshots Section */
.screenshots {
    margin-top: 40px;
}

.screenshots h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: scale(1.05);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.screenshot-item:hover .screenshot-overlay {
    height: 100%;
}

.screenshot-text {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.screenshot-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.demo-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.demo-btn:hover {
    background-color: #AA0000;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #AA0000;
}

@media (max-width: 1024px) {
    .script-details {
        grid-template-columns: 1fr;
    }

    .screenshot-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #990000 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.faq-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.faq-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Search Section */
.faq-search, .docs-search {
    margin: -30px auto 40px;
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.search-box {
    display: flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    border: none;
}

.search-input:focus {
    outline: none;
}

.search-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #AA0000;
}

/* FAQ Categories Tabs */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-tab {
    padding: 10px 20px;
    background-color: var(--white-background);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-tab:hover {
    background-color: rgba(204, 0, 0, 0.1);
    color: var(--primary-color);
}

.category-tab.active {
    background-color: var(--primary-color);
    color: white;
}

/* FAQ Main Content */
.faq-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.faq-list {
    list-style: none;
}

.faq-item {
    margin-bottom: 15px;
    background-color: var(--white-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    padding-right: 40px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(204, 0, 0, 0.05);
}

.faq-question:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-question {
    background-color: rgba(204, 0, 0, 0.1);
    color: var(--primary-color);
}

.faq-item.active .faq-question:after {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

/* Additional Help Section */
.additional-help {
    background-color: var(--white-background);
    padding: 50px 0;
    text-align: center;
    margin-bottom: 60px;
}

.help-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.help-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

.help-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.help-card {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.help-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(204, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.help-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.help-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.help-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.help-link:hover {
    background-color: #AA0000;
}

@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 28px;
    }

    .faq-hero p {
        font-size: 16px;
    }

    .help-options {
        flex-direction: column;
        align-items: center;
    }
}

/* Payment Page Styles */
.payment-header {
    text-align: center;
    margin: 40px 0;
}

.payment-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.payment-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.payment-card {
    background-color: var(--white-background);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.popular-tag {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    transform: rotate(45deg);
}

.payment-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.payment-card-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.payment-card-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.payment-card-price span {
    font-size: 16px;
    color: var(--text-muted);
}

.payment-card-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.payment-card-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.payment-card-features li:last-child {
    border-bottom: none;
}

.payment-card-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.payment-card-footer {
    text-align: center;
    margin-top: auto;
}

.payment-btn {
    display: inline-block;
    padding: 12px 25px;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.payment-btn:hover {
    background-color: #AA0000;
}

/* Payment Form */
.payment-form {
    background-color: var(--white-background);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 30px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.payment-form h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-row input, .form-row select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.form-row input:focus, .form-row select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.card-element {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.payment-error {
    color: var(--error-color);
    margin-bottom: 15px;
    text-align: center;
}

.payment-success {
    color: var(--success-color);
    margin-bottom: 15px;
    text-align: center;
}

/* Secure Badge */
.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: var(--text-muted);
}

.secure-badge i {
    margin-right: 10px;
    color: #CC0000;
}

/* Payment Guarantees */
.guarantees {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    max-width: 300px;
}

.guarantee-icon {
    margin-right: 15px;
    font-size: 24px;
    color: var(--primary-color);
}

.guarantee-text h4 {
    margin-bottom: 5px;
}

.guarantee-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.license-toggle {
    display: none;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
}

/* Documentation Page Styles */
.docs-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #990000 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.docs-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.docs-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Documentation Filter Section */
.docs-filter {
    background-color: var(--white-background);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-option {
    padding: 8px 16px;
    background-color: var(--background-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-option:hover, .filter-option.active {
    background-color: var(--primary-color);
    color: white;
}

/* Documentation Layout */
.docs-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
    margin-bottom: 60px;
}

/* Documentation Categories Sidebar */
.docs-sidebar {
    background-color: var(--white-background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.docs-categories {
    list-style: none;
}

.category-item {
    border-bottom: 1px solid var(--border-color);
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    background-color: rgba(204, 0, 0, 0.05);
    color: var(--primary-color);
}

.category-link.active {
    background-color: rgba(204, 0, 0, 0.1);
    color: var(--primary-color);
    font-weight: 500;
    border-left: 3px solid var(--primary-color);
}

.category-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Documentation List */
.docs-list {
    display: grid;
    gap: 20px;
}

.doc-card {
    background-color: var(--white-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.doc-card-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.doc-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(204, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 20px;
}

.doc-title {
    flex: 1;
}

.doc-title h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.doc-title span {
    font-size: 14px;
    color: var(--text-muted);
}

.doc-card-body {
    padding: 20px;
}

.doc-card-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.doc-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: var(--background-light);
    border-radius: 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.doc-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.doc-link i {
    margin-right: 8px;
}

/* Pagination */
.docs-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-item {
    display: inline-block;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white-background);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.pagination-item.active {
    background-color: var(--primary-color);
    color: white;
}

/* Document Type Indicator */
.doc-type {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;
}

.doc-type.guide {
    background-color: #E3F2FD;
    color: #1976D2;
}

.doc-type.tutorial {
    background-color: #F0F4C3;
    color: #827717;
}

.doc-type.reference {
    background-color: #E8F5E9;
    color: #388E3C;
}

.doc-type.troubleshooting {
    background-color: #FFEBEE;
    color: #D32F2F;
}

/* Featured Documentation */
.featured-docs {
    margin-bottom: 60px;
}

.featured-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.featured-item {
    background-color: var(--white-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.featured-header {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.featured-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.featured-overlay h3 {
    color: white;
    font-size: 18px;
}

.featured-content {
    padding: 20px;
}

.featured-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px;
}

.featured-meta {
    font-size: 13px;
    color: var(--text-muted);
}

.view-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: var(--background-light);
    border-radius: 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.view-btn i {
    margin-left: 8px;
    font-size: 12px;
}

/* Recently Updated Section */
.recently-updated {
    margin-bottom: 60px;
}

.recent-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.recent-list {
    background-color: var(--white-background);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.recent-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.recent-item:hover {
    background-color: rgba(204, 0, 0, 0.05);
}

.recent-item:last-child {
    border-bottom: none;
}

.recent-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: rgba(204, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    margin-right: 15px;
}

.recent-info {
    flex: 1;
}

.recent-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.recent-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.recent-date {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .docs-content {
        grid-template-columns: 1fr 2fr;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .docs-content {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .docs-hero h1 {
        font-size: 28px;
    }

    .docs-hero p {
        font-size: 16px;
    }
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-wrapper {
    background-color: var(--white-background);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 40px;
}

.contact-form-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group .error-message {
    display: none;
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
}

.form-group.error .error-message {
    display: block;
}

.form-submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #aa0000;
    transform: translateY(-2px);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
    display: block;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
    display: block;
}

/* Contact Information Styles */
.contact-info {
    background-color: var(--white-background);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 40px;
}

.contact-info-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-text {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(204, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.contact-detail-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-detail-content p,
.contact-detail-content a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-content a:hover {
    color: var(--primary-color);
}

.business-hours {
    margin-top: 30px;
}

.business-hours h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.business-hours-list {
    list-style: none;
}

.business-hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.business-hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
}

.hours {
    color: var(--text-muted);
}

@