/* Fonts */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1d1d1f;
    background: #fafafa;
}

/* Hero */
.hero {
    background: #0c2340;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero .name {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #c99700;
    color: white;
    border-radius: 4px;
    text-decoration: none;
}

/* Navbar */
.navbar {
    background: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.navbar a {
    text-decoration: none;
    color: #0c2340;
    font-weight: bold;
}

/* Sections */
.section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    color: #0c2340;
    margin-bottom: 20px;
}

/* Experience cards */
.exp-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #c99700;
    border-radius: 4px;
}

.exp-card h3 {
    margin-top: 0;
}

.org {
    font-weight: bold;
    color: #444;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.skills-grid span {
    background: #eaeaea;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}

/* Values */
.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.value-card {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #0c2340;
}

/* Contact */
.contact-info a {
    color: #0c2340;
    text-decoration: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0c2340;
    color: white;
    margin-top: 40px;
}