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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}
#trigger {
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.gpt {
    max-width:30%;
    max-height:30%;
}
.modal-content {
  display: flex;
  position: relative;
  align-items: center;
  background-color: #fff;
  margin: 0;
  padding: 20px;
  width: 0;
  height: 0;
  max-width: 90%;
  max-height: 90%;
  top: 0;
  left: 0;
  overflow: hidden;
  transition: width 0.3s ease, height 0.3s ease;
}

.close {
  color: #aaa;
  float: right;
  font-size: 38px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.nobult {
    list-style-type: none;
}

@media all and (orientation:portrait) {
    .hero {
	height: 75vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	text-shadow: #99f 0px 0px 7px;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #bbb;
	color: #44f;
    }
}
@media all and (orientation:landscape) {
    .hero {
	height: 75vh;
	display: flex;
	flex-direction: column;
	text-shadow: #99f 0px 0px 7px;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: url('whiteboard.png') center center/89% no-repeat;
	color: #44f;
    }
}

.emaillnk {
    font-size: 1.5rem;
    color: #181;
}

.hero h1 {
    font-size: 1.75rem;
}

.hero p {
    font-size: 1rem;
    margin-top: 1rem;
}

.cta {
    background: #b30;
    color: #FFF;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    margin-top: 2rem;
}

footer {
    background: #333;
    color: #FFF;
    text-align: center;
    padding: 1rem;
}


@media all and (orientation:landscape) {
    .scroll-container {
	width: 75%;
	height: 55%;
	display: flex;
	flex-direction: column;
	align-items: center;
    }
}
@media all and (orientation:portrait) {
    .scroll-container {
	width: 100%;
	height: 75%;
	display: flex;
	flex-direction: column;
	align-items: center;
    }
}

.scrollable {
    min-width: 200px;
    min-height: 100px;
    overflow: hidden;
    position: relative;
    width: 75%;
    height: 100%;
}

.content {
    position: absolute;
    top: 0;
    padding: 1rem;
}

.scroll-btn {
    color: #fff;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}
.scroll-container:hover .scroll-btn {
    opacity: 1;
}

.scroll-up {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.service_list {
    text-align: left;
    align-items: left;
}
ul ul {
    margin-top: 0.5em;
    margin-left: 1em;

