:root {
    --primary: #9333ea;
    --primary-dark: #7e22ce;
    --secondary: #ec4899;
    --text-light: #f3f4f6;
    --text-dark: #1f2937;
    --bg-dark: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Logo Styles */
.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.company-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.about-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 2rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-align: center;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-item {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: transform 0.3s;
    text-align: center;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-text {
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeIn 1s ease-out;
}

.feature-card {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 0.75rem;
    transition: transform 0.3s, background-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(31, 41, 55, 0.8);
}

.feature-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    opacity: 0.9;
}

/* Topics Section */
.topics {
    padding: 4rem 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeIn 1s ease-out;
}

.topic-card {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 0.75rem;
    transition: transform 0.3s, background-color 0.3s;
}

.topic-card:hover {
    transform: translateY(-5px);
    background-color: rgba(31, 41, 55, 0.8);
}

.topic-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.topic-card ul {
    list-style: none;
}

.topic-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.topic-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Portals Section */
.portals {
    padding: 4rem 0;
}

.portals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    animation: fadeIn 1s ease-out;
}

.portal-card {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 0.75rem;
    transition: transform 0.3s, background-color 0.3s;
}

.portal-card:hover {
    transform: translateY(-5px);
    background-color: rgba(31, 41, 55, 0.8);
}

.portal-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.portal-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.portal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.portal-link:hover {
    transform: translateX(5px);
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    text-align: center;
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    margin: 4rem 0;
    border-radius: 0.75rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

/* Footer */
footer {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section.brand h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.9;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    background-color: rgba(31, 41, 55, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.social-link:hover {
    background-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .company-logo {
        max-width: 150px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .about-badge {
        font-size: 0.875rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .highlight-item,
    .feature-card,
    .topic-card,
    .portal-card {
        padding: 1.25rem;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
}