body {
    background-color: #131417;
    color: #ffffff;
    font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;

}

* {
    box-sizing: border-box;
}

/* Header styles */
.header {
    height: 80px;
    background-color: #282c35;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: auto;
    margin-right: 30px;
    margin-left: 30px;
    transition: all 0.5s ease;

}

.header-left h1 {
    font-size: 35px;
    margin: 0;
    text-wrap: nowrap;
    transition: all 0.5s ease;

}

.header-right {
    display: flex;
    align-items: center;
    margin-right: 50px;
}

.header-right a {
    color: #94c7fb;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #f2f6f8;
}

.header-right {
    display: flex;
    align-items: center;
    transition: all 0.5s ease;

}

.header-right .button-container {
    display: flex;
    justify-content: flex-end;
}

.header-right .button {
    background-color: #282c35;
    border: none;
    padding: 10px 15px;
    margin-left: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;

    align-items: center;
    text-align: center;
    color: #f2f6f8;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-right .button:hover {
    background-color: #363b47;
    color: #94c7fb;
}

.header-right button:hover {
    background-color: #363b47;
}

.header-right button a:hover {
    color: #f2f6f8;
}

.content {
    margin-top: 80px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    background-color: #282c35;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 800px;
}

.card:hover {
    background-color: #363b47;
}

h1,
h2 {
    color: #f2f6f8;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #b4b4b4;
}

ul {
    list-style-type: disc;
    margin-bottom: 15px;
    color: #b4b4b4;
}

a {
    color: #94c7fb;
    text-decoration: none;
}


/* Hero section styles */
.hero {
    background-color: #282c3578;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    width: 100%;
    margin-top: 80px;
    transition: all 0.5s ease;

}

.hero-content {
    max-width: 800px;
    margin: 0 auto;

}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    transition: all 0.5s ease;

}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    transition: all 0.5s ease;

}

.hero-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-button, .outline-cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
}

.cta-button {
    background-color: #7289da;
    color: #fff;
    border: none;
}

.cta-button:hover {
    background-color: #5b6eae;
}

.outline-cta-button {
    background-color: transparent;
    color: #7289da;
    border: 2px solid #7289da;
    cursor: pointer;
}

.outline-cta-button:hover {
    background-color: #7289da;
    color: #fff;
}

/* Features section styles */
.features {
    padding: 60px 20px;
    text-align: center;
    width: 100%;

}

.features h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.feature-item {
    background-color: #282c35;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background-color: #363b47;
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Commands section styles */
.commands {
    padding: 60px 20px;
    text-align: center;
    width: 100%;

}

.commands h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.command-categories {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

details {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

summary {
    background-color: #7289da;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;

}

.command-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.command-table th,
.command-table td {
    padding: 10px;
    text-align: left;
}

.command-table tr:not(:last-child) th,
.command-table tr:not(:last-child) td {
    border-bottom: 1px solid #363b47;
}

.command-table th {
    background-color: #282c35;
    font-weight: bold;
}

.command-table tr:hover {
    background-color: rgba(40, 44, 53, 0.25);
}


.command-table th:first-child, .command-table td:first-child {
    width: 150px;
}

.command-table td:nth-child(2) {
    width: calc(100% - 150px);
}

/* Footer styles */
footer {
    background-color: #282c3578;
    color: #fff;
    padding: 20px;
    text-align: center;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: flex;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links a {
    color: #94c7fb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f2f6f8;
}


/* Hamburger menu styles */
.hamburger-menu {
    display: none;
}


.menu-icon {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    position: relative;
    user-select: none;
    color: #f2f6f8;
    font-size: 30px;
}


.menu-items {
    display: none;
    position: absolute;
    background-color: #7289da;
    right: 0;
    top: 100%;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    list-style: none;
    margin: 0 40px 0 0;
    min-width: 10rem;

}


.menu-items li {
    margin-bottom: 10px;
    padding: 5px;
}


.menu-items a {
    color: #f2f6f8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}


.menu-items a:hover {
    color: #131417;
}


#menu-toggle {
    display: none;
    transition: all 0.5s ease;

}


#menu-toggle:checked ~ .menu-items {

    display: block;
    transition: all 0.5s ease;

}

/* Responsive styles */
@media (max-width: 768px) {

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .features h2,
    .commands h2 {
        font-size: 24px;
    }
}

@media (max-width: 800px) {
    .header-left h1 {
        font-size: 24px;
        margin-right: 10px;
    }

    .logo {
        width: 40px;
        margin-right: 10px;
        margin-left: 10px;
    }

    .header-right .button {
        font-size: 12px;
        padding: 8px 12px;
        margin-left: 5px;
        margin-bottom: 3px;
    }

    .header-right .button-container {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .content {
        max-width: 80%;
    }

    .header-right {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .header-left h1 {
        display: none;
    }


}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    margin-bottom: 60px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow-y: auto;
}

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

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


.meet-team {
  padding: 60px 20px;
  text-align: center;
  width: 100%;
}

.meet-team h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.team-member {
  background-color: #282c35;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.team-member:hover {
  background-color: #363b47;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

@media (min-width: 350px) and (max-width: 475px) {
  .team-members {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    /*justify-content: flex-start;*/
    padding-bottom: 20px;
  }

  .team-member {
    flex: 0 0 auto;
    width: 160px;
  }

  .team-member img {
    width: 100px;
    height: 100px;
  }

  .team-member h3 {
    font-size: 16px;
  }

  .team-member p {
    font-size: 12px;
  }
}