/* style/about-licenses.css */
.page-about-licenses {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text on dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

.page-about-licenses__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-about-licenses__hero {
    background: linear-gradient(135deg, #8B0000, #4d0000); /* Darker gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about-licenses__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-about-licenses__hero-subtitle {
    font-size: 1.25em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-about-licenses__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Dark red text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about-licenses__hero-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #5a0000;
}

/* General Section Styling */
.page-about-licenses__section {
    padding: 60px 0;
    background-color: #222; /* Slightly lighter dark background for sections */
    margin-bottom: 20px;
}

.page-about-licenses__section:nth-child(odd) {
    background-color: #1a1a1a;
}

.page-about-licenses__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-about-licenses__text {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 20px;
    text-align: justify;
}

/* License Grid */
.page-about-licenses__license-grid,
.page-about-licenses__certification-grid,
.page-about-licenses__security-features,
.page-about-licenses__responsible-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-about-licenses__license-item,
.page-about-licenses__certification-item,
.page-about-licenses__feature-item {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-about-licenses__license-item:hover,
.page-about-licenses__certification-item:hover,
.page-about-licenses__feature-item:hover {
    transform: translateY(-5px);
}

.page-about-licenses__license-icon,
.page-about-licenses__certification-icon,
.page-about-licenses__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-about-licenses__license-title,
.page-about-licenses__certification-title,
.page-about-licenses__feature-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for item titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about-licenses__license-description,
.page-about-licenses__certification-description,
.page-about-licenses__feature-description {
    font-size: 1em;
    color: #b0b0b0;
}

/* General Button Style */
.page-about-licenses__button {
    display: inline-block;
    background-color: #8B0000; /* Dark red button */
    color: #FFD700; /* Gold text on dark red */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
}

.page-about-licenses__button:hover {
    background-color: #6a0000; /* Darker red on hover */
    color: #ffe680;
}

.page-about-licenses__button--cta {
    background-color: #FFD700; /* Gold CTA button */
    color: #8B0000; /* Dark red text */
    font-size: 1.2em;
    padding: 15px 35px;
    margin-top: 30px;
}

.page-about-licenses__button--cta:hover {
    background-color: #e6c200;
    color: #5a0000;
}

.page-about-licenses__button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    margin-left: 20px;
}

.page-about-licenses__button--secondary:hover {
    background-color: #FFD700;
    color: #1a1a1a;
}

/* Why K8VN List */
.page-about-licenses__advantages-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-about-licenses__advantages-list li {
    background-color: #2c2c2c;
    padding: 15px 25px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-about-licenses__list-icon {
    color: #FFD700;
    font-size: 1.4em;
    margin-right: 15px;
    font-weight: bold;
}

.page-about-licenses__list-highlight {
    color: #FFD700;
}

/* FAQ Section */
.page-about-licenses__faq-accordion {
    margin-top: 40px;
}

.page-about-licenses__faq-item {
    background-color: #2c2c2c;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-about-licenses__faq-question {
    color: #FFD700; /* Gold for FAQ questions */
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-about-licenses__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-about-licenses__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-about-licenses__faq-question:hover {
    background-color: #3a3a3a;
}

.page-about-licenses__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #b0b0b0;
}

.page-about-licenses__faq-answer p {
    padding-bottom: 20px;
    margin: 0;
}

/* CTA Bottom Section */
.page-about-licenses__cta-bottom {
    background-color: #8B0000; /* Dark red background for bottom CTA */
    padding: 80px 0;
    text-align: center;
}

.page-about-licenses__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about-licenses__cta-text {
    font-size: 1.2em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-about-licenses__hero-title {
        font-size: 2.5em;
    }

    .page-about-licenses__section-title {
        font-size: 2em;
    }

    .page-about-licenses__license-grid,
    .page-about-licenses__certification-grid,
    .page-about-licenses__security-features,
    .page-about-licenses__responsible-features {
        grid-template-columns: 1fr;
    }

    .page-about-licenses__hero-button,
    .page-about-licenses__button,
    .page-about-licenses__button--cta,
    .page-about-licenses__button--secondary {
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .page-about-licenses__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-about-licenses__hero-title {
        font-size: 2em;
    }

    .page-about-licenses__hero-subtitle {
        font-size: 1em;
    }

    .page-about-licenses__section-title {
        font-size: 1.8em;
    }

    .page-about-licenses__text,
    .page-about-licenses__license-description,
    .page-about-licenses__certification-description,
    .page-about-licenses__feature-description {
        font-size: 0.95em;
    }

    .page-about-licenses__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-about-licenses__cta-title {
        font-size: 1.8em;
    }
}