:root {
    --global-font-size: 15px;
    --global-line-height: 1.4em;
    --global-space: 10px;
    --font-stack: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
    --mono-font-stack: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
    --background-color: #222225;
    --page-width: 60em;
    --font-color: #e8e9ed;
    --invert-font-color: #222225;
    --secondary-color: #a3abba;
    --tertiary-color: #a3abba;
    --primary-color: #62c4ff;
    --error-color: #ff3c74;
    --progress-bar-background: #3f3f44;
    --progress-bar-fill: #62c4ff;
    --code-bg-color: #3f3f44;
    --input-style: solid;
    --display-h1-decoration: none;
}

body.terminal {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding-top: 2.5em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1em;
}

.terminal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a2e;
    z-index: 1000;
    padding: 0.5em 1em;
    box-sizing: border-box;
}

.terminal-nav>header.terminal-logo {
    flex-shrink: 0;
}

.terminal-logo .logo.terminal-prompt {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 2.2em;
    margin-right: 0.5em;
}

.terminal-logo .logo a.no-style {
    display: inline-flex;
    align-items: center;
    font-size: 1em;
    color: #e0e0e0;
    text-decoration: none;
    margin-left: 0.25em;
}

.terminal-logo .logo a {
    color: #c3aed6;
    font-size: 1.5em;
    text-decoration: none;
}

.terminal-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.terminal-menu li {
    margin-left: 1em;
}

.terminal-menu .menu-item {
    color: #e0e0e0;
    text-decoration: none;
}

.terminal-menu .menu-item.active,
.terminal-menu .menu-item:hover {
    color: #ffffff;
    border-bottom: 2px solid #c3aed6;
}

.terminal-menu .btn-primary {
    background-color: #8e44ad;
    border-color: #8e44ad;
    color: #ffffff;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5em;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 5px 0;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hero {
    text-align: center;
    padding: 2em 0;
}

.hero h1 {
    display: inline-block;
    text-align: center;
    font-size: 2.5em;
    background: linear-gradient(90deg, #62c4ff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1em;
    color: #c3aed6;
    max-width: 95ch;
    margin: 0 auto;
}

.features-bar {
    display: grid;
    gap: 1em;
    background-color: #2c2c54;
    padding: 1.5em 1em;
    border-radius: 8px;
    margin-bottom: 2em;
    grid-template-columns: repeat(4, 1fr);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #e0e0e0;
}

.feature-title {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.1em;
}

.feature-description {
    margin-top: 0.5em;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
}

.plan-card {
    background-color: #2c2c54;
    border: 1px solid #4a4a8a;
    border-radius: 4px;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
}

.plan-header {
    margin-bottom: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.plan-tag {
    background-color: #4caf50;
    color: #ffffff;
    padding: 0.3em 0.6em;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: bold;
}

.plan-tag.alt {
    background-color: #8e44ad;
}

.plan-card h2 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0.8em;
    font-size: 1.8em;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5em;
    flex-grow: 1;
}

.plan-card ul li {
    margin-bottom: 0.5em;
    color: #c3aed6;
    display: flex;
    align-items: center;
}

.plan-card ul li::before {
    content: '⚙️';
    margin-right: 0.5em;
    font-size: 0.9em;
}

.plan-card ul li:nth-child(1)::before {
    content: '⚙️';
}

.plan-card ul li:nth-child(2)::before {
    content: '💾';
}

.plan-card ul li:nth-child(3)::before {
    content: '💽';
}

.plan-card ul li:nth-child(4)::before {
    content: '🔗';
}

.plan-card ul li:nth-child(5)::before {
    content: '🗃️';
}

.plan-card ul li:nth-child(6)::before {
    content: '➕';
}

.plan-card ul li:nth-child(7)::before {
    content: '🔄';
}

.plan-card ul li:nth-child(8)::before {
    content: '🗓️';
}

.plan-card .price {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 1em;
}

.plan-card .price strong {
    font-size: 1.5em;
    color: #ffffff;
}

.plan-card .btn-primary {
    background-color: #8e44ad;
    border-color: #8e44ad;
    color: #ffffff;
    width: 100%;
    padding: 0.8em;
}

.info-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    margin-top: 2em;
    margin-bottom: 2em;
}

.info-card {
    background-color: #2c2c54;
    border: 1px solid #4a4a8a;
    border-radius: 8px;
    padding: 1.5em;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-card.highlight {
    background-color: #3a3a7a;
    border-color: #62c4ff;
    box-shadow: 0 0 15px rgba(98, 196, 255, 0.3);
}

.info-card-icon {
    font-size: 2em;
    margin-bottom: 0.8em;
    color: #62c4ff;
}

.info-card h3 {
    color: #ffffff;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.info-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #c3aed6;
    margin-bottom: 0;
}

.infra-cards-section {
    margin: 3em 0 2em 0;
    text-align: center;
}

.infra-title {
    font-size: 2.5em !important;
    font-weight: bold;
    background: linear-gradient(90deg, #62c4ff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2em;
}

.infra-subtitle {
    color: #c3aed6;
    font-size: 1.2em;
    margin-bottom: 2em;
}

.infra-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
    justify-content: center;
}

@media (max-width: 900px) {
    .infra-cards-container {
        grid-template-columns: 1fr;
    }
}

.infra-card {
    background: linear-gradient(120deg, #23234a 60%, #23234a 100%);
    border: 1px solid #39397a;
    border-radius: 12px;
    padding: 2em 1.5em 1.5em 1.5em;
    text-align: left;
    box-shadow: 0 2px 16px 0 rgba(44, 44, 84, 0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 340px;
}

.infra-card-icon {
    font-size: 2.2em;
    margin-bottom: 0.7em;
    display: inline-block;
}

.infra-card h3 {
    color: #fff;
    font-size: 1.3em;
    margin: 0 0 0.5em 0;
    font-weight: 600;
}

.infra-card-desc {
    color: #c3aed6;
    font-size: 1em;
    margin-bottom: 1.2em;
}

.infra-kv-pairs {
    display: flex;
    gap: 1em;
    margin-bottom: 1em;
}

.infra-kv {
    background: #23234a;
    border: 1px solid #39397a;
    border-radius: 6px;
    padding: 0.5em 1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 120px;
}

.infra-kv-label {
    color: #a3abba;
    font-size: 0.85em;
    margin-bottom: 0.2em;
}

.infra-kv-value {
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
}

.infra-key-features-title {
    color: #a3abba;
    font-size: 0.95em;
    margin-top: 1em;
    margin-bottom: 0.2em;
    font-weight: 500;
}

.infra-key-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
    list-style: disc inside;
    color: #c3aed6;
    font-size: 0.98em;
    margin: 0 0 0.2em 0;
    padding: 0;
}

.infra-key-features li {
    margin: 0;
    padding: 0.5em 0 0 0;
}

.server-overview-section {
    margin: 3em 0 2em 0;
    text-align: center;
}

.server-overview-title {
    font-size: 2.5em !important;
    font-weight: bold;
    background: linear-gradient(90deg, #62c4ff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2em;
}

.server-overview-subtitle {
    color: #c3aed6;
    font-size: 1.1em;
    margin-bottom: 2em;
}

.server-overview-card {
    display: flex;
    background: #18182f;
    border: 1px solid #39397a;
    border-radius: 12px;
    box-shadow: 0 2px 16px 0 rgba(44, 44, 84, 0.12);
    padding: 1.5em;
    max-width: 1400px;
    margin: 0 auto 2em auto;
    align-items: stretch;
    gap: 2em;
}

.server-overview-img-col {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-overview-img-wrap {
    position: relative;
    width: 500px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    background: #23234a;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.server-overview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.server-overview-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.3em 0.8em;
    border-radius: 5px;
    color: #fff;
    font-size: 0.9em;
    font-weight: 600;
    z-index: 2;
}

.server-overview-new-label {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3em 0.8em;
    border-radius: 5px;
    color: #fff;
    font-size: 0.9em;
    font-weight: 600;
    z-index: 2;
}

.server-overview-content-col {
    flex: 1.5 1 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.server-overview-desc {
    color: #c3aed6;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 1.5em;
}

.server-overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    margin-bottom: 1.5em;
}

.server-overview-stat {
    background: #23234a;
    border: 1px solid #39397a;
    border-radius: 6px;
    padding: 0.8em 1.2em;
    text-align: left;
}

.server-overview-stat-label {
    color: #a3abba;
    font-size: 0.9em;
    display: block;
    margin-bottom: 0.2em;
}

.server-overview-stat-value {
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
}

.server-overview-key-features-title {
    color: #a3abba;
    font-size: 1em;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.server-overview-key-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
    list-style: disc inside;
    color: #c3aed6;
    font-size: 0.98em;
    margin: 0 0 1.5em 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em 1em;
}

.server-overview-key-features li {
    margin: 0;
    padding: 0;
}

.server-overview-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1em;
    border-top: 1px solid #39397a;
}

.server-overview-price-label {
    color: #a3abba;
    font-size: 1em;
}

.server-overview-price {
    color: #fff;
    font-size: 1.1em;
}

.server-overview-price strong {
    font-size: 1.8em;
    font-weight: bold;
}

.server-overview-price-unit {
    color: #a3abba;
    font-size: 0.8em;
    margin-left: 0.2em;
}

.server-overview-btn {
    background: #a259f7;
    border: none;
    color: #fff;
    padding: 0.8em 1.5em;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.about-header {
    text-align: center;
}

.about-title {
    display: inline-block;
    font-size: 2.8em;
    font-weight: bold;
    background: linear-gradient(90deg, #62c4ff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3em;
}

.about-description {
    font-size: 1.2em;
    color: #c3aed6;
    max-width: 80ch;
    margin: 0 auto 2em auto;
}

.mission-card {
    background-color: #2c2c54;
    border: 1px solid #4a4a8a;
    border-radius: 8px;
    padding: 2em;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.mission-title {
    color: #ffffff;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.mission-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #e0e0e0;
}

.values-section {
    text-align: center;
    padding: 3em 0;
}

.values-title {
    font-size: 2.5em !important;
    font-weight: bold;
    background: linear-gradient(90deg, #62c4ff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: #2c2c54;
    border: 1px solid #4a4a8a;
    border-radius: 8px;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-icon {
    font-size: 2em;
    margin-bottom: 0.8em;
    color: #62c4ff;
}

.value-card .value-title {
    color: #ffffff;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 0.5em;
    background: none;
    -webkit-text-fill-color: initial;
}

.value-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #c3aed6;
    margin-bottom: 0;
}

.team-section {
    text-align: center;
    padding: 2em 0;
    margin-bottom: 2em;
}

.team-title {
    font-size: 2.5em !important;
    font-weight: bold;
    background: linear-gradient(90deg, #62c4ff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-card {
    background-color: transparent;
    padding: 1.5em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2em;
    border: 4px solid #4a4a8a;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member-card:hover .team-member-img {
    transform: scale(1.05);
    border-color: #62c4ff;
}

.team-member-name {
    color: #ffffff;
    font-size: 1.4em;
    margin: 0;
}

.team-member-role {
    color: #62c4ff;
    font-size: 1em;
    margin-bottom: 0.8em;
    font-weight: 500;
}

.team-member-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #c3aed6;
    max-width: 30ch;
}

.next-level-section {
    text-align: center;
    padding: 3em 1em;
    margin: 2em 0;
    border-radius: 8px;
}

.next-level-title {
    font-size: 2.5em !important;
    font-weight: bold;
    background: linear-gradient(90deg, #62c4ff 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3em;
}

.next-level-subtitle {
    font-size: 1.1em;
    color: #c3aed6;
    margin-bottom: 1.5em;
}

.next-level-buttons {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-bottom: 2.5em;
}

.next-level-buttons .btn {
    padding: 0.8em 1.5em;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    transition: all 0.2s ease;
}

.next-level-buttons .btn-primary {
    background-color: #8e44ad;
    color: #ffffff;
    border: 1px solid #8e44ad;
}

.next-level-buttons .btn-primary:hover {
    background-color: #a259f7;
    border-color: #a259f7;
}

.next-level-buttons .btn-secondary {
    background-color: transparent;
    color: #e0e0e0;
    border: 1px solid #4a4a8a;
}

.next-level-buttons .btn-secondary:hover {
    background-color: #2c2c54;
    border-color: #62c4ff;
    color: #ffffff;
}

.next-level-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5em;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.next-level-card {
    background-color: #2c2c54;
    border: 1px solid #4a4a8a;
    border-radius: 8px;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.next-level-card-icon {
    font-size: 1.8em;
    margin-bottom: 0.8em;
    color: #c3aed6;
}

.next-level-card h3 {
    color: #ffffff;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.next-level-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #c3aed6;
    margin-bottom: 0;
}

.next-level-card:nth-child(4) .next-level-card-icon {
    color: #ffdd57;
}

.legal-container {
    max-width: 800px;
    margin: 2em auto;
    padding: 2em;
    background-color: #1a1a2e;
    border-radius: 8px;
}

.legal-title {
    font-size: 2.5em !important;
    text-align: center;
    background: linear-gradient(90deg, #a259f7 0%, #62c4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.legal-last-updated {
    text-align: left;
    color: #a3abba;
    margin-bottom: 2em;
}

.legal-content h2 {
    color: #ffffff;
    font-size: 1.4em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.legal-content p {
    color: #c3aed6;
    line-height: 1.6;
    margin-bottom: 1em;
}

.legal-content a {
    color: #62c4ff;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1250px) {
    .container {
        padding: 0 1em;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1em;
    }

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

    .info-cards-container {
        grid-template-columns: 1fr;
    }

    .infra-cards-container {
        grid-template-columns: 1fr;
    }

    .next-level-cards {
        grid-template-columns: 1fr;
    }

    .server-overview-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1em;
    }

    .server-overview-img-col,
    .server-overview-content-col {
        width: 100%;
        max-width: 100%;
    }

    .server-overview-img-wrap {
        width: 100%;
        height: 180px;
        margin-bottom: 1em;
    }
}

@media (max-width: 992px) {
    .next-level-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1150px) {
    .terminal-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .terminal-menu {
        width: auto;
        margin-top: 0;
        position: relative;
    }

    .hamburger-menu {
        display: block;
        z-index: 1001;
    }

    .terminal-menu ul#nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #2c2c54;
        border: 1px solid #4a4a8a;
        border-radius: 4px;
        width: 200px;
        z-index: 1000;
        padding: 0.5em 0;
    }

    .terminal-menu ul#nav-links.active {
        display: flex;
    }

    .terminal-menu li {
        margin-right: 0;
        margin-left: 0;
        width: 100%;
        border-bottom: 1px solid #4a4a8a;
    }

    .terminal-menu li:last-child {
        border-bottom: none;
    }

    .terminal-menu .menu-item {
        padding: 0.8em 1em;
        text-align: left;
    }

    .terminal-menu .menu-item.btn-primary {
        margin-top: 0.5em;
        width: calc(100% - 2em);
        margin-left: 1em;
        margin-right: 1em;
        margin-bottom: 0.5em;
    }

    .terminal-menu li:has(.btn-primary) {
        border-bottom: none;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .info-cards-container {
        grid-template-columns: 1fr;
    }

    .infra-cards-container {
        grid-template-columns: 1fr;
    }

    .next-level-cards {
        grid-template-columns: 1fr;
    }

    .server-overview-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1em;
    }

    .server-overview-img-col,
    .server-overview-content-col {
        width: 100%;
        max-width: 100%;
    }

    .server-overview-img-wrap {
        width: 100%;
        height: 180px;
        margin-bottom: 1em;
    }
}

.site-footer {
    background-color: #1a1a2e;
    color: #c3aed6;
    padding: 3em 0;
    font-size: 0.95em;
}

.site-footer a {
    color: #e0e0e0;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    margin-bottom: 2em;
}

.footer-about {
    max-width: 300px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 1em;
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
}

.footer-logo-img {
    height: 1.5em;
}

.footer-description {
    margin-bottom: 1em;
}

.footer-social-icons {
    display: flex;
    gap: 1em;
}

.footer-social-icons a {
    font-size: 1.2em;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1em;
    font-size: 1.1em;
}

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

.footer-column ul li {
    margin-bottom: 0.5em;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #39397a;
    margin: 2em 0;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

.footer-scroll-top {
    font-size: 1.5em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.footer-copyright p {
    margin: 0;
}

@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1em;
        text-align: center;
    }
}

.about-section {
    padding: 4em 0;
    text-align: center;
}

.about-header .btn {
    background-color: #2c2c54;
    border: 1px solid #4a4a8a;
    color: #e0e0e0;
    margin-bottom: 2em;
    padding: 0.5em 1em;
    border-radius: 6px;
}

.about-title {
    font-size: 2.5em !important;
    font-weight: bold;
    background: linear-gradient(90deg, #a259f7 0%, #62c4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5em;
    display: inline-block;
}

.about-description {
    font-size: 1.1em;
    color: #c3aed6;
    max-width: 70ch;
    margin: 0 auto 3em auto;
    line-height: 1.6;
}

.mission-card {
    background-color: #23234a;
    border: 1px solid #39397a;
    border-radius: 12px;
    padding: 2.5em;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2em;
    text-align: left;
}

.mission-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #62c4ff;
    background-color: #2c2c54;
    border: 2px solid #62c4ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.mission-card h2 {
    font-size: 1.5em;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.mission-card p {
    color: #c3aed6;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}