:root {
    /* Brand Colors */
    --brand-primary: #215772;    /* Regatta SW */
    --brand-secondary: #72A1BC;  /* Lighter blue complement */
    --brand-accent: #E8B54D;     /* Warm gold accent */
    --text-dark: #2C3E50;        /* Dark blue-gray for text */
    --text-light: #ECF0F1;       /* Light gray for contrast */
    --background-light: #F8FAFC; /* Light background */
    --background-dark: #1B4358;  /* Darker variation of Regatta */
}

/* Download Button Styles */
.download-resume {
    text-align: center;
    margin: 2rem 0;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--brand-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: var(--background-dark);
}

.download-icon {
    fill: currentColor;
}

/* Table Styles */
.resume-table,
.specializations-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 1em;
    background: var(--background-light);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Specializations Table */
.specializations-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--brand-secondary);
    line-height: 1.5;
}

.specializations-table td:first-child {
    width: 25%;
    background-color: var(--background-light);
    color: var(--brand-primary);
    font-weight: 500;
}

.specializations-table tr:hover {
    background-color: rgba(114, 161, 188, 0.1);
}

.resume-table th, .resume-table td {
    border: 1px solid #b3d1f7;
    padding: 10px 14px;
    text-align: left;
}
.resume-table th {
    background: #e6f0fa;
    color: #005fa3;
    font-weight: 600;
}
.resume-table tr:nth-child(even) td {
    background: #f4f8fc;
}


body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    background-color: #e6f0fa;
    color: #222;
}
header {
    background: linear-gradient(90deg, #0078D7 60%, #005fa3 100%);
    color: #fff;
    padding: 32px 0 16px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,120,215,0.08);
}
nav {
    background: #005fa3;
    color: #fff;
    padding: 12px 0;
    text-align: center;
    font-size: 1.1em;
    box-shadow: 0 1px 4px rgba(0,120,215,0.05);
}
nav a {
    color: #fff;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #90cdf4;
}
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}
section {
    padding: 28px 20px;
    margin: 18px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,120,215,0.04);
}
footer {
    text-align: center;
    padding: 16px;
    background: #0078D7;
    color: #fff;
    font-size: 1em;
    margin-top: 32px;
}
.resume-link {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 18px;
    background: #0078D7;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,120,215,0.08);
    transition: background 0.2s;
}
.resume-link:hover {
    background: #005fa3;
}
.about-main {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
}
.about-photo {
    flex: 0 0 180px;
    text-align: center;
}
.about-details {
    flex: 1 1 300px;
}
.testimonial-carousel {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 18px 0;
    font-size: 1.1em;
    color: #005fa3;
    min-height: 100px;
}
blockquote {
    font-style: italic;
    color: #222;
    margin-bottom: 8px;
}
form#contactForm {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #f4f8fc;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,120,215,0.05);
}
form label {
    font-weight: 500;
    color: #005fa3;
}
form input, form select, form textarea {
    padding: 8px;
    border: 1px solid #b3d1f7;
    border-radius: 4px;
    font-size: 1em;
    font-family: 'Roboto', Arial, sans-serif;
}
form button {
    background: #0078D7;
    color: #fff;
    border: none;
    padding: 10px 0;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
form button:hover {
    background: #005fa3;
}
.g-recaptcha {
    margin: 12px 0;
}
