/* Base styles extracted from the original static portfolio site */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    color: #0058a3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    margin: 0.5rem 0.5rem 0;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.2s ease;
}

.btn.primary {
    background-color: #0058a3;
    color: #fff;
}

.btn.primary:hover {
    background-color: #00447d;
}

.btn.secondary {
    background-color: transparent;
    color: #0058a3;
    border: 2px solid #0058a3;
}

.btn.secondary:hover {
    background-color: #0058a3;
    color: #fff;
}

/* Hero section */
.hero {
    background-image: url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
}

.hero-content {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
}

.hero-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #0058a3;
}

.hero-description {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
}

/* Sections */
main section {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

main h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0058a3;
    text-align: center;
}

/* Cases */
.cases .case-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.case {
    background-color: #fff;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 280px;
}

.case h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.case p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.unverified {
    color: #d9534f;
    font-weight: bold;
}

/* Skills */
.skill-list {
    list-style: none;
    line-height: 1.8;
    font-size: 1rem;
    color: #555;
}

/* Experience */
.experience .job {
    background-color: #fff;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.job h3 {
    font-size: 1.2rem;
    color: #333;
}

.job-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.job-description {
    font-size: 0.9rem;
    color: #555;
}

/* Content list */
.content-list {
    list-style: none;
    line-height: 1.8;
    font-size: 1rem;
}

.content-list li + li {
    margin-top: 0.5rem;
}

/* Testimonials */
.testimonial {
    background-color: #fff;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}