/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #f5f7fb;
    color: #333;
}

/* Container */
.container {
    width: 85%;
    max-width: 1000px;
    margin: auto;
    padding: 40px 0;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Sections */
section {
    margin: 30px 0;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

section h2 {
    margin-bottom: 15px;
    color: #1e3c72;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.skill {
    background: #e8f0ff;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.skill:hover {
    background: #1e3c72;
    color: white;
    transform: scale(1.05);
}

/* Contact */
#contact p {
    margin: 8px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #1e3c72;
    color: white;
    margin-top: 20px;
}