body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fb;
    color: #222;
}

.header {
    background: #fff;
    text-align: center;
    padding: 40px 20px 30px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 10px;
}
.header h1 {
    font-size: 2rem;
    margin: 0 0 16px 0;
    font-weight: 600;
}
.header h2 {
    font-size: 1.5rem;
    margin: 0 0 16px 0;
    font-weight: 500;
    color: #6321bf;
}
.contact-btn {
    background: #6321bf;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 500;
}
.contact-btn:hover {
    background: #4a1a8f;
}

.about {
    background: #fff;
    padding: 60px 20px;
    margin-top: 0;
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 600;
    color: #6321bf;
}
.about p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}
.about p:last-child {
    margin-bottom: 0;
}

.services, .contact {
    max-width: 900px;
    margin: 48px auto 0 auto;
    padding: 0 20px;
}
.services h2, .contact h2 {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 8px;
    font-weight: 600;
}
.subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 32px;
    font-size: 1.1rem;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(99,33,191,0.07);
    padding: 32px 24px 24px 24px;
    flex: 1 1 260px;
    max-width: 290px;
    min-width: 220px;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s;
    opacity: 0;
    transform: translateY(30px);
}
.card.animated {
    animation: fadeInUp 0.6s ease forwards;
}
.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(99,33,191,0.13);
}
.icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}
.card h3 {
    margin: 0 0 10px 0;
    font-size: 1.15rem;
    font-weight: 600;
}
.card p {
    margin: 0;
    color: #444;
    font-size: 1rem;
}
.card a {
    color: #6321bf;
    text-decoration: none;
    word-break: break-all;
}
.card a:hover {
    text-decoration: underline;
}
.footer {
    background: #6321bf;
    color: #fff;
    text-align: center;
    padding: 18px 10px;
    margin-top: 48px;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        max-width: 100%;
        width: 100%;
    }
    .services, .contact {
        padding: 0 8px;
    }
    .about {
        padding: 40px 20px;
    }
    .about h2 {
        font-size: 1.7rem;
    }
    .about p {
        font-size: 1rem;
    }
} 