html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: Calibri, sans-serif;
    color: #4ac2c5;
    background-color: #F0F4F8;
    margin: 0;
    padding: 0;
    padding-top: 100px;
}

h1, h2, h3, h4 {
    font-family: Calibri, sans-serif;
    color: #000000;
    font-weight: bold;
    margin-top: 0;
}

h1 {
    font-size: 36px;
    text-align: center;
    margin: 20px auto;
}

h2 {
    font-size: 30px;
    text-align: center;
    margin: 40px auto 20px;
}

h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

p {
    color: #333;
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #4ac2c5;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    font-size: 20px;
}

.btn-primary:hover {
    background-color: #3ca4a6;
}

.hero {
    position: relative;
    background-image: url('Entwine_Hero_Image.png');
    background-size: 75% auto;
    background-repeat: no-repeat;
    background-position: center top;
    padding: 160px 20px 100px;
    color: white;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    background-color: #F0F4F8;
}

.hero-overlay {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.hero h1 {
    font-size: 40px;
    color: white;
    line-height: 1.4;
}

.hero p {
    font-size: 20px;
    color: #e0f7f8;
    margin: 10px 0 20px;
}

.intro, .why-entwine, .cta-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.services-preview {
    padding: 40px 20px;
    background-color: #ffffff;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: #F9FAFB;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1 1 280px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card a {
    display: inline-block;
    margin-top: 10px;
    color: #4ac2c5;
    text-decoration: none;
    font-weight: bold;
}

.card a:hover {
    text-decoration: underline;
}

ul.service-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
}

ul.service-list li {
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
}

body > header,
body > section,
body > footer {
    flex-shrink: 0;
}

body > footer {
    margin-top: auto;
}

footer {
    margin-top: 60px;
    padding: 20px;
    background-color: #ffffff;
    color: #4ac2c5;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    position: relative;
    z-index: 10;
}

.logo {
    width: 25%;
    min-width: 350px;
}

header {
    background-color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 140px;
}

#hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
    position: absolute;
    top: 20px;
    right: 20px;
}

#hamburger .bar {
    display: block;
    width: 100px;
    height: 10px;
    background-color: #4ac2c5;
    margin: 12px 0;
    transition: 0.4s;
}

#nav-menu {
    position: fixed;
    top: 0;
    right: -50vw;
    width: 50vw;
    height: 100%;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: right 0.5s;
    padding-top: 10px;
}

#nav-menu.active {
    right: 0;
}

#nav-menu::before {
    content: '';
    position: absolute;
    top: 82.5px;
    bottom: 0;
    left: 0;
    border-left: 0px solid #E0E0E0;
    width: 1px;
}

#nav-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 160px 0 0 0;
}

#nav-menu ul li {
    margin-bottom: 10px;
}

#nav-menu ul li a {
    color: #4ac2c5;
    text-decoration: none;
    font-weight: bold;
    font-size: 42px;
    display: block;
    padding: 14px;
    width: 40vw;
    text-align: right;
}

#close-btn {
    position: absolute;
    top: 20px;
    right: 5vw;
    font-size: 120px;
    cursor: pointer;
}

#nav-widemenu {
    display: none;
}

#nav-widemenu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

#nav-widemenu ul li {
    margin: 0 20px;
}

#nav-widemenu ul li a {
    color: #4ac2c5;
    text-decoration: none;
    font-weight: bold;
    font-size: 28px;
    padding: 10px;
    display: block;
}

@media screen and (max-width: 1300px) {
    .logo {
        width: 50%;
        min-width: unset;
    }
    #hamburger {
        display: flex;
    }
    #nav-menu {
        display: block;
    }
    #nav-widemenu {
        display: none;
    }
    .hero {
        background-size: 100% auto;
        width: 100%;
    }
    .hero p {
        font-size: 30px;
    }
    .btn-primary {
        font-size: 30px;
        padding: 30px 50px;
    }
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 60%;
        margin: 0 auto;
        font-size: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .logo {
        width: 50%;
        min-width: unset;
    }
    #hamburger {
        display: flex;
    }
    #nav-menu {
        display: block;
    }
    #nav-widemenu {
        display: none;
    }
    .hero {
        background-size: 100% auto;
        width: 100%;
    }
    .hero p {
        font-size: 30px;
    }
    .btn-primary {
        font-size: 30px;
        padding: 30px 50px;
    }
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 60%;
        margin: 0 auto;
        font-size: 30px;
    }
}

@media screen and (min-width: 1301px) {
    #hamburger, #nav-menu {
        display: none;
    }
    #nav-widemenu {
        display: block;
    }
}

.about, .services, .testimonials, .contact {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.about img, .services img, .testimonials img, .contact img {
    float: left;
    margin-right: 20px;
}

.about p, .services p, .testimonials p, .contact p {
    text-align: justify;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.content-container {
    display: flex;
    align-items: top;
    justify-content: space-between;
    margin-top: 20px;
}

.text-content {
    width: 50%;
}

.image-container {
    margin-top: 20px;
    margin-right: 20px;
    padding: 0;
    flex-basis: 50%;
    display: flex;
    justify-content: flex-end;
}

.image-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: -8px 8px 8px 0 rgba(0, 0, 0, 0.2);
}
.footer-grid {
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.site-footer {
  background-color: #ffffff;
  padding: 40px 20px;
  border-top: 1px solid #ddd;
  color: #333;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 20px;
  column-gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
  flex: 1 1 250px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #4ac2c5;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
}

.footer-column ul li a:hover {
  color: #4ac2c5;
}

.footer-left {
  flex: 1;
  text-align: left;
}

.footer-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
}

.footer-right {
  flex: 1;
  text-align: right;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 10px;
}

