/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1b26; /* Dark background */
    color: #c0caf5; /* Soft text color for readability */
    line-height: 1.5;
}

.container {
    max-width: 768px;
    margin: 40px auto;
    background: #24283b; /* Slightly lighter background for the container */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 36px;
    color: #7aa2f7; /* Highlight color for the name */
    margin-bottom: 10px;
}

header p {
    font-weight: 700;
    color: #9af79f; /* Secondary highlight color */
}

.contact-info {
    text-align: center;
    font-size: 0.95em;
    margin-bottom: 40px;
}

.contact-info a {
    color: #7aa2f7;
    text-decoration: none;
}

.contact-info p {
    margin-bottom: 10px;
}

h2 {
    border-bottom: 2px solid #9af79f;
    padding-bottom: 5px;
    margin: 30px 0;
    color: #7aa2f7;
}

.summary {
    margin-bottom: 30px;
}

.summary p {
    color: #a9b1d6; /* Lighter text for summary for contrast */
}

.experience {
    margin-bottom: 30px;
}

.experience h3 {
    color: #7aa2f7; /* Highlight color for job titles */
}

.experience p, .experience li {
    color: #c0caf5; /* Soft text color for readability */
}

ul {
    padding-left: 40px;
}

/* Certifications section */
.certifications {
    margin-bottom: 30px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.cert {
    text-align: center;
    padding: 15px;
    background: #32344a;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px; /* or whatever height accommodates your longest text */
}

.cert:hover {
    transform: translateY(-5px); /* Slight hover effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cert-logo {
    width: 100px; /* Adjust size as necessary */
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.cert p {
    color: #a9b1d6; /* Text color */
    margin-top: 10px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Add styles for other sections following the pattern above */

/* Footer (if any), possibly for contact or legal information */
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85em;
    margin-top: 30px;
    border-top: 1px solid #33467c; /* Border color that stands out slightly */
}

footer p {
    color: #a9b1d6;
}
