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

html, body {
    font-family: 'Open Sans', sans-serif;
    color: #4d4d4d;
    background-color: #fff;
    overflow-x: hidden;
}

body {
    overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #000;
    color: #f5ebeb;
    padding: 30px;
    padding-left: calc((100% - 970px) / 2 + 30px);
    text-align: left;
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    display: flex;
    padding: 70px 30px;
    max-width: 970px;
    margin: 0 auto;
    gap: 40px;
    min-height: 429px;
}

.hero-image {
    flex: 0 0 330px;
    min-height: 290px;
    background-color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: Open Sans,Helvetica Neue,Helvetica,"sans-serif";
    font-style: normal;
    font-size: 37px;
    font-weight: 700;
    color: #000;
    letter-spacing: normal;
    line-height: 1.2;
}

.hero-content h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
    color: #000000;
}

.hero-content h3 {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #4d4d4d;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 18px;
}

.contact-info img {
    width: 23px;
    height: auto;
    flex-shrink: 0;
    margin-top: 0;
}

.contact-info p {
    line-height: 1.4;
    font-size: 14px;
    margin: 0;
    color: #4d4d4d;
}

/* About Section */
.about-section {
    background-color: #eee;
    padding: 35px 30px;
    text-align: left;
}

.about-content {
    max-width: 970px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

.about-section h2 strong {
    font-weight: 700;
}

.about-section h3 {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    color: #4d4d4d;
}

/* Contact Section */
.contact-section {
    padding: 73px 30px;
    max-width: 970px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-section h2 strong {
    font-weight: 700;
}

.contact-section h3 {
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    color: #4d4d4d;
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-column {
    flex: 1;
    min-width: 200px;
}

.contact-column .contact-info {
    margin-bottom: 30px;
}

.contact-column p {
    line-height: 1.4;
    font-size: 15px;
    margin: 0;
}

.contact-column a {
    color: #4d4d4d;
    text-decoration: none;
    font-size: 15px;
}

.contact-column a:hover {
    color: #676464;
    text-decoration: underline;
}

.linkedin-icon {
    width: 30px;
    height: 30px;
    border:none;
}

/* Footer */
footer {
    background-color: #eee;
    min-height: 164px;
}

/* Responsive */
@media (max-width: 650px) {
    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .contact-details {
        flex-direction: column;
    }
    
    header h1 {
        font-size: 22px;
    }
    
    body {
        min-width: initial;
    }
}

@media (min-width: 651px) {
    body {
        min-width: 970px;
    }
}
