* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: #EDE8DF;
    border-bottom: 1px solid #d0ccc4;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mit {
    height: 22px;
    width: auto;
}

.logo-beacon {
    height: 28px;
    width: 28px;
    margin-left: 12px;
}

.logo-text {
    font-size: 14px;
    letter-spacing: 0.25em;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-register {
    font-size: 10px;
    letter-spacing: 0.25em;
    color: #1a1a1a;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.btn-register:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    background-color: #111111;
    border-bottom: 1px solid #1e1e1e;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-label {
    font-size: 10px;
    letter-spacing: 0.35em;
    color: #DC3545;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    margin-top: 20px;
    font-family: Georgia, serif;
    line-height: 1.05;
}

.hero-title-main {
    font-size: clamp(36px, 6vw, 72px);
    color: #FFFFFF;
    display: block;
}

.hero-title-accent {
    font-size: clamp(36px, 6vw, 72px);
    color: #DC3545;
    display: block;
}

.hero-description {
    font-size: 16px;
    color: #8a8a8a;
    max-width: 600px;
    margin: 24px auto 40px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    background-color: #DC3545;
    color: #FFFFFF;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 20px 40px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #c82333;
}

/* Workshops Section */
.workshops {
    padding: 80px 0;
}

.section-title {
    font-family: Georgia, serif;
    font-size: 42px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.workshop-card {
    background-color: #111111;
    border: 1px solid #1e1e1e;
    padding: 40px;
    transition: border-color 0.2s;
}

.workshop-card:hover {
    border-color: #DC3545;
}

.workshop-header {
    margin-bottom: 20px;
}

.workshop-tag {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: #DC3545;
    text-transform: uppercase;
    font-weight: 600;
}

.workshop-title {
    font-family: Georgia, serif;
    font-size: 28px;
    color: #FFFFFF;
    margin-top: 12px;
}

.workshop-description {
    font-size: 14px;
    color: #8a8a8a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.workshop-features {
    list-style: none;
    margin-bottom: 32px;
}

.workshop-features li {
    font-size: 13px;
    color: #FFFFFF;
    padding: 8px 0;
    border-bottom: 1px solid #1e1e1e;
}

.workshop-features li:before {
    content: "✓ ";
    color: #DC3545;
    font-weight: bold;
    margin-right: 8px;
}

.workshop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.workshop-price {
    font-size: 24px;
    color: #DC3545;
    font-weight: 700;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFFFFF;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 1px solid #2a2a2a;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #DC3545;
    background-color: #DC3545;
}

/* Footer */
.footer {
    background-color: #111111;
    border-top: 1px solid #1e1e1e;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 13px;
    color: #8a8a8a;
    margin: 8px 0;
}

.footer a {
    color: #DC3545;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 16px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .workshops {
        padding: 60px 0;
    }
    
    .workshop-grid {
        grid-template-columns: 1fr;
    }
}
