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

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

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

/* Header Section */
#hero {
    background-color: #282c34;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.profile-pic {
    border-radius: 50%;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-button {
    background-color: #ff6600;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e55b00;
}

/* About Section */
#about {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

#about h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Skills Section */
#skills {
    background-color: #eaeaea;
    padding: 50px 0;
    text-align: center;
}

#skills h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

#skills ul {
    list-style: none;
    font-size: 1.2em;
}

#skills li {
    margin: 10px 0;
}

/* Contact Section */
#contact {
    padding: 50px 0;
    text-align: center;
    background-color: #fff;
}

#contact h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

#contact p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Articles Section */
.articles {
    padding: 40px;
    background-color: #f4f4f4;
}

.articles h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.article-category {
    margin-top: 30px;
}

.article-summary {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: left;
}

.article-summary h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.article-summary p {
    font-size: 1rem;
    color: #555;
}

.articles a {
    color: #0066cc;
}

/* Footer Section */
footer {
    background-color: #282c34;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer p {
    font-size: 1em;
    margin-bottom: 10px;
}

.social-links {
    margin-top: 20px;
}

.social-icon {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-size: 1.1em;
}

.social-icon:hover {
    color: #ff6600;
}
