body {
    font-family: 'Inter', sans-serif;
    background-color: #10061c;
    color: #d1d5db; /* gray-300 */
}
.hero-gradient {
    background: linear-gradient(135deg, #c433ff 0%, #00d4ff 100%);
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    background-color: #1f1235;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(196, 51, 255, 0.3);
}
.section-title {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #c433ff, #00d4ff);
    border-radius: 2px;
}
.btn-primary {
    background-color: #c433ff;
    color: white;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
    background-color: #a822e0;
    box-shadow: 0 0 20px rgba(196, 51, 255, 0.5);
}
.icon-placeholder {
    font-size: 2.5rem;
    line-height: 1;
}
.header-bg {
    background-color: rgba(16, 6, 28, 0.8);
    backdrop-filter: blur(10px);
}
.section-bg {
    background-color: #1a0e2d;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}
.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.social-icon {
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.social-icon:hover {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}
.contact-info {
    text-align: center;
}
.contact-info a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}
.contact-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
.footer-bottom {
    font-size: 0.85rem;
    opacity: 0.6;
    text-align: center;
}
.footer-nav-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}
.footer-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
}
.footer-nav-links a:hover {
    color: #ff00ff;
}
