/* Global settings */
* {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #3b3939;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 auto;
    padding: 0;
    width: 450px; /* Fixed width of 450px */
    background-color: #f8f8f8;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(248,248,248,0.9) 100%), 
                      url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f5b942' fill-opacity='0.07' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  }
  
  /* Navigation menu */
  .gMenu {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 450px; /* Fixed width matching the body */
    max-width: 450px;
    z-index: 99;
  }
  
  /* Menu icon */
  .gMenu .menu-icon {
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 20px;
    padding-top: 5px;
    height: 20px;
    z-index: 100;
    background-color: rgba(255, 123, 0, 0.1);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .gMenu .menu-icon:hover {
    background-color: rgba(255, 123, 0, 0.2);
    transform: scale(1.05);
  }
  
  .gMenu .menu-icon .navicon {
    background: #ff7b00;
    display: block;
    height: 2px;
    width: 26px;
    position: relative;
    transition: background .4s ease-out;
  }
  
  .gMenu .menu-icon .navicon::before,
  .gMenu .menu-icon .navicon::after {
    background: #ff7b00;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .4s ease-out;
    width: 100%;
  }
  
  .gMenu .menu-icon .navicon::before {
    top: 8px;
  }
  
  .gMenu .menu-icon .navicon::after {
    top: -8px;
  }
  
  /* Menu items */
  .gMenu .menu {
    background: linear-gradient(120deg, rgba(255, 123, 0, 0.9), rgba(255, 187, 0, 0.95));
    overflow: hidden;
    max-height: 0;
    transition: max-height .5s ease, opacity 0.5s ease;
    width: 450px; /* Fixed width matching the body */
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    opacity: 0;
    border-radius: 0 0 10px 10px;
  }
  
  .gMenu .menu li:first-of-type {
    padding-top: 70px;
  }
  
  .gMenu .menu li {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    transition-delay: calc(0.05s * var(--item-index, 0));
  }
  
  .gMenu .menu li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .gMenu .menu li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .gMenu .menu li a:hover {
    transform: translateY(-2px);
  }
  
  .gMenu .menu li a:hover::after {
    width: 30%;
  }
  
  /* Hide checkbox */
  .gMenu .menu-btn {
    display: none;
  }
  
  /* Menu when checkbox is checked */
  .gMenu .menu-btn:checked ~ .menu {
    max-height: 100vh;
    opacity: 1;
  }
  
  .gMenu .menu-btn:checked ~ .menu li {
    transform: translateY(0);
    opacity: 1;
  }
  
  .gMenu .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .gMenu .menu-btn:checked ~ .menu-icon .navicon::before {
    transform: rotate(-45deg);
    top: 0;
  }
  
  .gMenu .menu-btn:checked ~ .menu-icon .navicon::after {
    transform: rotate(45deg);
    top: 0;
  }
  
  /* Typography */
  h1 {
    color: transparent;
    background: linear-gradient(120deg, #ff7b00, #f7b733);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 5rem; /* Fixed font size */
    margin: 4rem 0 0 0;
    padding-left: 20px;
    font-family: "Audiowide", sans-serif;
    line-height: 1.1;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.1);
    position: relative;
    animation: fadeIn 1s ease-out;
    letter-spacing: 1px;
    margin-bottom: 0;
    display: block;
    width: 100%;
  }
  
  h2 {
    padding-left: 20px;
    margin: 0;
    font-size: 2rem; /* Fixed font size */
    font-family: "Audiowide", sans-serif;
    color: #444;
    letter-spacing: 2px;
    animation: slideIn 1s ease-out;
    display: block;
    width: 100%;
    margin-top: 0.2rem;
  }
  
  h3 {
    font-size: 1.5rem; /* Fixed font size */
    text-align: center;
    margin: 30px auto;
    font-family: "Audiowide", sans-serif;
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
  h3::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff7b00, transparent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
  }
  
  h4 {
    font-size: 18px;
    color: #3b3b3b;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  p {
    line-height: 1.5;
    max-width: 100%;
    padding: 0 15px;
  }
  
  /* Sections */
  section {
    width: 100%;
    margin: 40px auto;
    padding: 0 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
  }
  
  section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: -1;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transform: scaleX(0.97);
  }
  
  /* Top section */
  .top {
    text-align: left;
    padding: 40px 15px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .top::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,123,0,0.1) 0%, rgba(255,123,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
  }
  
  .top::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,123,0,0.1) 0%, rgba(255,123,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
  }
  
  /* Profile section */
  .profile {
    width: 100%;
    margin: 40px auto;
    padding: 30px 15px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .Profile__inner {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
  }
  
  .profile__list {
    width: 100%;
    font-size: 14px;
    display: grid;
    grid-template-columns: minmax(4em, auto) 1fr;
    gap: 1.2em;
    margin: 35px auto;
    border-left: 5px solid;
    border-image: linear-gradient(to bottom, #ff7b00, #ffa500) 1;
    padding-left: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }
  
  .profile p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Works section */
  .works {
    width: 100%;
    margin: 40px auto;
    padding: 30px 15px;
    border-radius: 15px;
  }
  
  .works__inner {
    width: 100%;
    margin: 0 auto;
    padding: 15px 0 30px;
  }
  
  .works__list {
    width: 100%;
    font-size: 14px;
    list-style: none;
    margin: 0 auto;
    border-left: 5px solid;
    border-image: linear-gradient(to bottom, #ff7b00, #ffa500) 1;
    padding-left: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }
  
  .works__list li {
    margin-top: 15px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
    transition: transform 0.3s ease;
  }
  
  .works__list li:hover {
    transform: translateX(5px);
  }
  
  .works__list li::before {
    content: '▶';
    position: absolute;
    left: -5px;
    color: #ff7b00;
    font-size: 10px;
    opacity: 0.8;
  }
  
  .works__list a {
    text-decoration: none;
    color: #2b2b2b;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .works__list a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ff7b00;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
  }
  
  .works__list a:hover {
    color: #ff7b00;
  }
  
  .works__list a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  /* System section */
  .system {
    width: 100%;
    margin: 40px auto;
    padding: 30px 15px;
    border-radius: 15px;
  }
  
  .system__inner {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
  }
  
  .system__list {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(4em, auto) 1fr;
    font-size: 15px;
    list-style: none;
    margin: auto;
    border-left: 5px solid;
    border-image: linear-gradient(to bottom, #ff7b00, #ffa500) 1;
    padding: 15px;
    gap: 1.2em;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }
  
  .system__list dt {
    font-weight: bold;
    color: #444;
  }
  
  .system__list dd {
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .system__list dd:hover {
    transform: translateX(5px);
  }
  
  /* Contact section */
  .contact {
    width: 100%;
    margin: 50px auto;
    padding: 30px 15px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
  }
  
  .contact p {
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
  }
  
  form {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    padding: 20px;
    width: 100%;
    max-width: 420px;
    margin: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #444;
    font-size: 15px;
    transition: color 0.3s ease;
  }
  
 
  
  input,
  textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 5px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    border-color: #ff7b00;
    box-shadow: 0 0 0 2px rgba(255, 123, 0, 0.1);
  }
  
  textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  button {
    background: linear-gradient(90deg, #ff7b00, #ffa500);
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
    position: relative;
    overflow: hidden;
  }
  
  button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
  }
  
  button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 123, 0, 0.3);
  }
  
  button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
  }
  
  button:hover::after {
    left: 100%;
  }
  
  /* Thank you message */
  .thank-you-message {
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 370px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .thank-you-message p {
    margin: 10px 0;
    text-align: center;
    font-size: 15px;
  }
  
  .thank-you-message button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* Schedule section */
  .schedule {
    width: 100%;
    margin: 100px auto 40px;
    padding: 20px 15px;
    text-align: center;
  }
  
  .schedule a.schedule-btn {
    background: linear-gradient(90deg, #ff7b00, #ffa500);
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    text-align: center;
  }
  
  .schedule a.schedule-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
  }
  
  .schedule a.schedule-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
  }
  
  .schedule a.schedule-btn:hover::after {
    left: 100%;
  }
  
  /* Animation classes */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Remove all media queries since we're using fixed width */

  