/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}
.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
a {
    text-decoration: none;
    color: #3498db;
    transition: color 0.3s ease;
}
a:hover {
    color: #2980b9;
}

/* Header Styles */
header {
    background-color: #222;
    color: white;
    padding: 20px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.branding h1 {
    font-size: 2.5em;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    color: white;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
nav ul li a:hover {
    color: #3498db;
}

/* Section Styles */
main {
    padding: 40px 0;
}
h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #222;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}
section {
    margin-bottom: 40px;
}
.about-me p, .update-section p {
    font-size: 1.1em;
    line-height: 1.8;
}
.skills ul, .projects ul {
    list-style: none;
}
.skills li, .projects li {
    background: #ecf0f1;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid #3498db;
}
.skills li:hover, .projects li:hover {
    background-color: #bdc3c7;
}

/* Dynamic Info */
.dynamic-info p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.social-icons a {
    margin: 0 15px;
    font-size: 1.2em;
    color: white;
}
.social-icons a:hover {
    color: #3498db;
}
footer p {
    margin-top: 20px;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }
    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}
