/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f1e9; /* Soft beige, inspired by church interior */
    color: #333;
    padding: 20px;
}

.cv-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    color: #1a3c6e; /* Deep blue, art-inspired accent */
    margin-bottom: 10px;
}

.contact-info {
    font-size: 1.1em;
    color: #666;
}

.contact-info a {
    color: #1a3c6e;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.8em;
    color: #d4a017; /* Gold accent, reflecting glass art */
    border-bottom: 2px solid #d4a017;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

ul {
    list-style-type: none;
}

ul li {
    margin-bottom: 10px;
}

ul ul {
    margin-left: 20px;
    list-style-type: disc;
}

strong {
    color: #1a3c6e;
}

em {
    color: #d4a017;
    font-style: italic;
}

p {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .cv-container {
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .contact-info {
        font-size: 1em;
    }
}
​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​