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

body {
    font-family: "Verdana", sans-serif;
    color: #7a7a7a;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background: #fff;
    border-bottom: 3px solid #e97132;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo img {
    max-width: 25px;
    height: auto;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}

nav a:hover,
nav a.active {
    color: #e97132;
    border-bottom-color: #e97132;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

main {
}

/* Home Section - Side by Side */
.home-section {
    display: flex;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 30px 0 0 0;
    gap: 0;
}

.home-image {
    flex: 1;
}

.home-image img {
    width: 100%;
    display: block;
}

.home-content {
    flex: 0 0 39.5%;
    text-align: center;
    padding: 30px 40px;
}

.home-content h1 {
    font-family: "Albert Sans", "Verdana", sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #e97132;
}

.home-content .subtitle {
    font-size: 16px;
    color: #e97132;
    font-weight: 400;
    margin-bottom: 20px;
}

.home-content .tagline {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: #7a7a7a;
}

.home-content .tagline p {
    margin: 0;
}

/* Page Header (Profile & Contact) */
.page-header {
    background: #f8f8f8;
    padding: 50px 30px;
    text-align: center;
    border-bottom: 3px solid #e97132;
}

.page-header h1 {
    font-family: "Albert Sans", "Verdana", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #e97132;
}

/* Services Header */
.services-header {
    padding: 40px 30px 15px;
}

.services-title {
    font-family: "Albert Sans", "Verdana", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #e97132;
    margin-bottom: 5px;
}

.services-subtitle {
    font-size: 1rem;
    color: #e97132;
}

.services-section {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 20px 30px;
}

.services-content {
    flex: 1;
    order: 2;
}

.services-image {
    flex: 1;
    order: 1;
}

.services-image img {
    width: 100%;
}

.services-content h2 {
    font-size: 18px;
    color: #7a7a7a;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.5em;
}

.services-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.services-content ul li {
    padding: 7px 0;
    padding-left: 20px;
    position: relative;
    color: #7a7a7a;
    font-size: 18px;
    line-height: 1.5em;
}

.services-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    background: #e97132;
    border-radius: 50%;
}

.services-content .expertise {
    color: #7a7a7a;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5em;
}

/* Profile & Contact */
.profile-row {
    display: flex;
    align-items: flex-start;
    padding: 20px 30px;
    gap: 0;
    justify-content: flex-start;
}

.profile-photo-col {
    flex: 0 0 auto;
}

.profile-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
}

.profile-info-col {
    flex: 0 1 auto;
    padding-left: 30px;
    font-size: 18px;
    color: #7a7a7a;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.profile-info-col p {
    margin: 0;
}

.profile-info-col a {
    color: #e97132;
}

.profile-info-col a:hover {
    text-decoration: underline;
}

.linkedin-link {
    display: inline-block;
    margin-top: 15px;
}

.linkedin-link img {
    width: 5em;
    display: block;
}

.profile-qr-col {
    flex: 0 0 auto;
    padding-left: 30px;
    text-align: left;
}

.profile-qr-col img {
    height: 200px;
    width: auto;
    display: block;
}

.qr-caption {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 2em;
    color: #7a7a7a;
}

/* Footer */
footer {
    background: #e97132;
    text-align: center;
    margin-top: 30px;
    padding: 15px 20px;
    font-size: 0.9rem;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: #d3d3d3;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    nav.open {
        display: flex;
    }

    nav a {
        font-size: 16px;
        padding: 8px 0;
    }

    /* Home mobile */
    .home-section {
        flex-direction: column;
        gap: 0;
    }

    .home-content {
        flex: none;
        width: 100%;
        padding: 30px 20px;
    }

    .home-content h1 {
        font-size: 23px;
    }

    .home-content .tagline {
        font-size: 16px;
    }

    /* Services mobile */
    .page-header {
        padding: 35px 20px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .services-header {
        padding: 25px 20px 10px;
    }

    .services-section {
        flex-direction: column;
        gap: 20px;
        padding: 10px 20px;
    }

    .services-image {
        order: 1;
        flex: none;
        max-width: 100%;
    }

    .services-content {
        order: 2;
    }

    /* Profile mobile */
    .profile-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 20px;
    }

    .profile-info-col {
        padding-left: 0;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .profile-qr-col {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .home-content h1 {
        font-size: 20px;
    }

    .home-content .tagline {
        font-size: 15px;
    }

    .services-content h2 {
        font-size: 16px;
    }
}
