main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

main h1 {
    font-size: 3.2em;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #2563eb 50%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-align: center;
}

main .subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 60px;
}

main .university-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 33%, #2563eb 66%, #dc2626 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

main .university-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

main .university-banner h2 {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

main .university-banner p {
    margin: 0;
    font-size: 1.2em;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

main .phases-intro {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    text-align: center;
}

main .phases-intro h2 {
    font-size: 2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

main .phases-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

main .phase-badge {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: white;
}

main .phase-badge.orange {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

main .phase-badge.blue {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

main .phase-badge.red {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

main .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

main .contact-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

main .contact-card.orange {
    border-left: 6px solid #ff6b35;
}

main .contact-card.orange::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

main .contact-card.blue {
    border-left: 6px solid #2563eb;
}

main .contact-card.blue::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

main .contact-card.red {
    border-left: 6px solid #dc2626;
}

main .contact-card.red::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

main .contact-card h3 {
    font-size: 1.5em;
    margin: 0 0 20px 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

main .contact-card.orange h3 {
    color: #ff6b35;
}

main .contact-card.blue h3 {
    color: #2563eb;
}

main .contact-card.red h3 {
    color: #dc2626;
}

main .contact-card p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 1.05em;
}

main .contact-card a {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    transition: opacity 0.3s ease;
}

main .contact-card a:hover {
    opacity: 0.7;
}

main .map-section {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

main .map-section h2 {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #ff6b35 0%, #2563eb 50%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

main .map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

main .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 968px) {
    main .contact-grid {
        grid-template-columns: 1fr;
    }

    main h1 {
        font-size: 2.5em;
    }

    main .university-banner,
    main .phases-intro,
    main .contact-card,
    main .map-section {
        padding: 30px 25px;
    }

    main .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    main {
        padding: 40px 20px;
    }

    main h1 {
        font-size: 2em;
    }

    main .university-banner h2 {
        font-size: 1.8em;
    }

    main .map-container {
        height: 350px;
    }
}