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

/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background-color: #7aa5d4; /* Light blue */
    color: #fff;
    text-align: center;
    padding: 2em 0;
}

.header-title {
    font-size: 3em;
    margin-bottom: 0.2em;
}

.header-subtitle {
    font-size: 1.2em;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    text-align: center;
}

.about {
    background-color: #f9d9e2; /* Light pink */
    padding: 40px 0;
}

.skills {
    background-color: #f4ead5; /* Light yellow */
    padding: 40px 0;
}

.skills-list {
    list-style-type: none;
    text-align: center;
}

.skills-list li {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #e8cfca; /* Light peach */
    border-radius: 20px;
}

.contact {
    background-color: #b2dab2; /* Light green */
    padding: 40px 0;
}

.contact-list {
    list-style-type: none;
    text-align: center;
}

.contact-list li {
    margin-bottom: 10px;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    font-size: 0.9em;
}
