@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f9e29b;
    --gold-dark: #aa8a2e;
    --black: #050505;
    --dark-grey: #121212;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.card-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
}

.card {
    flex: 1;
    background: var(--dark-grey);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    opacity: 0.7;
}

.card h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 15px;
}

.card h3 {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin: 20px 0 10px 0;
}

.card p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.card ul {
    list-style: none;
    margin-bottom: 20px;
}

.card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}

.card li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card strong {
    color: var(--gold-light);
}

footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .card-container {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .card {
        padding: 25px;
    }
}