body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f0f0f0;
    color: white;
    padding: 0.5rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.header-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 0;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    margin-top: -0.5rem;
}

nav ul li {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

nav a {
    color: #777;
    text-decoration: none;
    font-weight: bold;
}

.language-switcher {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    display: flex;
}

.lang-btn {
    background-color: #555;
    color: white;
    border: none;
    padding: 0.5rem;
    margin-right: 0.5rem;
    cursor: pointer;
}

.lang-btn:hover {
    background-color: #777;
}

#hero {
    padding: 2rem;
    text-align: center;
    background-color: #e8e8e8;
    color: #333;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

#about {
    padding: 2rem;
    position: relative;
    background-color: #e8e8e8;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.about-section {
    background-image: url('photos/your-about-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 300px 200px;
    position: relative;
    min-height: 50px;
}

.text-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 5px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.about-section .text-container {
    left: 0;
    margin-left: 0;
    max-width: calc(100% - 200px);
    white-space: normal;
}

.view-more {
    display: inline-block;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.view-more:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

#services {
    padding: 2rem;
    background-color: #e8e8e8;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-interior {
    background-image: url('photos/interior-fitout-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 300px 50px;
    position: relative;
}

.service-interior .text-container {
    margin-left: -50px;
}

.service-museum {
    background-image: url('photos/museum-decor-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 300px 50px;
    position: relative;
}

.service-museum .text-container {
    margin-left: -50px;
}

#projects {
    padding: 2rem;
    background-color: #e8e8e8;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.project {
    background-image: url('photos/Nissin_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 300px 50px;
    border: none;
    position: relative;
}

.project .text-container {
    margin-left: -50px;
}

.project img {
    display: none;
}

footer {
    background-color: #f0f0f0;
    padding: 1rem;
    text-align: center;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.contact-btn {
    display: inline-block;
    background-color: #555;
    color: white;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    text-decoration: none;
    border-radius: 5px;
}

.contact-btn:hover {
    background-color: #777;
}