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

header {
    background: linear-gradient(90deg, #4B2E83 80%, #A892D8 100%);
    color: #fff;
    text-align: center;
    padding: 2rem 1rem 1.5rem 1rem;
    position: relative;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 4px 16px rgba(75,46,131,0.10);
}

header h1 {
    font-size: 2rem;
    margin: 0.5rem 0 0.5rem 0;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #A892D8;
    font-weight: 500;
}

.cta-buttons {
    margin: 1.5rem 0 0 0;
}

.cta-buttons .btn {
    display: inline-block;
    background: #A892D8;
    color: #fff;
    font-weight: bold;
    padding: 0.7rem 1.5rem;
    margin: 0 0.5rem 0.5rem 0.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(75,46,131,0.08);
    border: none;
}

.cta-buttons .btn:hover {
    background: #fff;
    color: #4B2E83;
    border: 1px solid #A892D8;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(75,46,131,0.07);
    padding: 2rem 1.5rem;
}

section {
    margin-bottom: 2.5rem;
}

h2 {
    color: #4B2E83;
    border-left: 6px solid #A892D8;
    padding-left: 0.7rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

h3 {
    color: #333333;
    margin-top: 1.2rem;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.7rem;
    color: #333333;
}

.equipo-miembro {
    background: #F3F3F7;
    border-left: 4px solid #A892D8;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

footer {
    background: #4B2E83;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.95rem;
    margin-top: 2rem;
    border-top: 4px solid #A892D8;
}

.card-group {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(75,46,131,0.10);
    padding: 2rem 1.5rem;
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 340px;
    margin: 0.5rem;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #F3F3F7;
}

.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(75,46,131,0.18);
    border: 1px solid #A892D8;
}

.card h3 {
    color: #4B2E83;
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}

.card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #A892D8 0%, #4B2E83 100%);
    border-radius: 2px;
    margin: 2rem auto;
}

.timeline-alt {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 0;
}

.timeline-alt::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: #A892D8;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-alt-item {
    position: relative;
    width: 50%;
    padding: 1.5rem 2rem;
    box-sizing: border-box;
}

.timeline-alt-item.left {
    left: 0;
    text-align: right;
}

.timeline-alt-item.right {
    left: 50%;
    text-align: left;
}

.timeline-alt-content {
    background: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(75,46,131,0.10);
    position: relative;
    display: inline-block;
    min-width: 220px;
    max-width: 340px;
}

.timeline-alt-item.left .timeline-alt-content {
    margin-right: 30px;
}

.timeline-alt-item.right .timeline-alt-content {
    margin-left: 30px;
}

.timeline-alt-date {
    display: inline-block;
    background: #4B2E83;
    color: #fff;
    font-weight: bold;
    border-radius: 20px;
    padding: 0.3rem 1rem;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.timeline-alt-item::after {
    content: '';
    position: absolute;
    top: 2.2rem;
    width: 22px;
    height: 22px;
    background: #4B2E83;
    border: 4px solid #A892D8;
    border-radius: 50%;
    z-index: 2;
}

.timeline-alt-item.left::after {
    right: -11px;
}

.timeline-alt-item.right::after {
    left: -11px;
}

.timeline-alt-content h4 {
    color: #4B2E83;
    margin: 0.3rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.timeline-alt-content p {
    color: #333333;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 700px) {
    main {
        padding: 1rem 0.5rem;
    }
    header {
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }
    .logo {
        width: 80px;
    }
    h1 {
        font-size: 1.2rem;
    }
    h2 {
        font-size: 1.1rem;
    }
    .card-group {
        flex-direction: column;
        align-items: center;
    }
    .timeline {
        padding-left: 18px;
    }
    .timeline-content {
        padding: 0.7rem 0.7rem;
        font-size: 0.95rem;
    }
        .timeline-alt::before {
        left: 20px;
    }
    .timeline-alt-item,
    .timeline-alt-item.left,
    .timeline-alt-item.right {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 1.5rem 0.5rem 1.5rem 2.5rem;
    }
    .timeline-alt-item.left .timeline-alt-content,
    .timeline-alt-item.right .timeline-alt-content {
        margin: 0 0 0 30px;
    }
    .timeline-alt-item::after {
        left: 0;
        right: auto;
    }
}