body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: rgb(139,60,60);
    color: white;
}

body.home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.home-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex-shrink: 0;
}

body.page {
    padding: 80px 20px 20px;
}

h1 {
    text-align: center;
}

img {
    max-width: 90%;
    max-height: 90%;
}

.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    transition: 0.3s;
    padding-top: 60px;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    display: block;
    color: white;
    padding: 20px;
    text-decoration: none;
    font-size: 18px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.1);
}

.sub-link {
    padding-left: 40px !important;
    font-size: 16px !important;
}

.service-links {
    max-width: 600px;
    margin: 40px auto;
}

.service-links a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px;
    margin: 10px 0;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
}

.service-links a:hover {
    background: rgba(0,0,0,0.5);
}

.content-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 768px) {
    .content-container {
        max-width: 50%;
    }
}

.service-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
}

.service-section h2 {
    margin-top: 0;
}

.home-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.home-catchphrase {
    font-size: 1.5em;
    font-style: italic;
}

@media (max-width: 767px) {
    body.home {
        flex-direction: column;
    }
    .home-text {
        margin-top: -2em;
    }
    .home-title, .home-catchphrase {
        text-align: center;
    }
}
