body {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    background: #fff;
    color: #222;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.logo-container img {
    height: 113px;
    width: auto;
    display: block;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 1rem 0;
    justify-content: center;
    width: 100%;
}

.navbar-links li {
    display: inline;
}

.navbar-links a {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    color: #222;
    text-decoration: none;
}

.navbar-links a:hover {
    color: #000;
    border-bottom: 2px solid #222;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 580px;
    background: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(20%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1, .hero-content p {
    font-family: 'Cormorant Garamond', serif;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin: 0;
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    width: 100%;
    padding: 1.2rem 2rem 1.2rem 2rem;
    margin-top: 0;
    border-top: 1px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    text-align: left;
    gap: 2rem;
    min-height: 70px;
    position: relative;
    z-index: 1;
}

.footer-contact {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: right;
    margin: 0;
    word-break: break-word;
}

.footer-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: max-content;
    pointer-events: auto;
    user-select: auto;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.criteria-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.criteria-box {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    max-width: 500px;
}

.criteria-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
}

.criteria-box ul {
    padding-left: 1.2rem;
    margin: 0;
}

.criteria-box li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #444;
}

@media (max-width: 1100px) {
    .criteria-boxes {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .criteria-boxes {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
}

.principal-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.linkedin-link {
    display: inline-block;
    vertical-align: middle;
}

.linkedin-logo {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}

.footer-copyright {
    flex: 1;
}

.contact-form {
    max-width: 400px;
    margin-top: 2rem;
}

.contact-input {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.5rem;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.5rem;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-submit {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.contact-submit:hover {
    background: #444;
}

.principal-section {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.principal-photo {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex-shrink: 0;
    margin-top: 30px;
}

.principal-bio {
    flex: 1;
}

@media (max-width: 700px) {
    .principal-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .principal-photo {
        width: 135px;
        height: 135px;
    }
    .principal-bio {
        width: 100%;
    }
}

.portfolio-logos-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-top: -2rem;
    flex-wrap: wrap;
    margin-left: 220px;
}

.portfolio-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
}

.about-main {
    padding-left: 2rem;
    padding-right: 5rem;
}
