/* Reset and base styles */
  :root {
      --primary-accent-color: #FF9933;
      --primary-text-color: #333;
  }

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

  .hidden {
    display: none;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-text-color);
    background: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .screenshot-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .screenshot {
    height: 333px;
    margin-top: 20px;
  }

  .top-link-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
  }

  .top-link {
    text-decoration: none;
    font-size: 14px;
    color: var(--primary-text-color);
    border-bottom: 1px dotted var(--primary-text-color);
  }

  .logo {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .logo h1 {
    color: var(--primary-accent-color);
    font-family: 'Rozha One', serif;
    font-size: 24px;
    margin: 0;
  }

  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 30px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: var(--primary-text-color);
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: var(--primary-accent-color);
  }
  
  /* Main layout */
  main {
    min-height: calc(100vh - 70px);
  }
  
  .main-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }
  
  /* Hero content */
  .hero-content {
    flex: 1;
    background: url('background.png');
    background-repeat: repeat;
    background-size: cover;
  }
  
  .hero-text {
    background: #ffffffb8;
    margin: 24px;
    padding: 24px;
    padding-bottom: 0px;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 20px;
    color: var(--primary-text-color);
    font-weight: 700;
  }
  
  .highlight {
    color: var(--primary-accent-color);
  }
  
  .divider {
    height: 4px;
    width: 100px;
    background-color: #990000;
    margin: auto auto 24px auto;
  }
  
  .subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
  }

  .value-prop {
    font-size: 16px;
    color: #555;
    margin-bottom: 14px;
  }
  
  .quote {
    /* font-style: italic; */
    color: var(--primary-text-color);
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    border-left: 4px solid #990000;
    padding-left: 12px;
  }
  
  .hero-image {
    margin-top: 20px;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  /* Form styles */
  .registration-form {
    flex: 1;
    max-width: 550px;
  }
  
  .form-container {
    height: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  
  .form-container h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-text-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .form-group {
    margin-bottom: 20px;
    flex: 1;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
  }
  
  input[type="text"],
  input[type="tel"],
  input[type="number"],
  select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
  }
  
  input:focus,
  select:focus {
    outline: none;
    border-color: var(--primary-accent-color);
  }
  
  .gender-radio-group {
    border: none
  }

  .radio-group {
    display: flex;
    gap: 20px;
  }
  
  .radio-label,
  .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
  }
  
  .radio-label span,
  .checkbox-label span {
    margin-left: 8px;
  }
  
  .phone-input {
    display: flex;
    align-items: center;
  }
  
  .country-code {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-right: none;
    padding: 12px 15px;
    border-radius: 5px 0 0 5px;
    color: #555;
  }
  
  .phone-input input {
    border-radius: 0 5px 5px 0;
  }
  
  .input-hint {
    /* display: block; */
    font-size: 12px;
    color: #777;
    margin-top: 5px;
  }
  
  .checkbox-group {
    margin-top: 25px;
  }
  
  .link {
    color: var(--primary-accent-color);
    text-decoration: none;
  }
  
  .link:hover {
    text-decoration: underline;
  }

  .secondary-button {
    background-color: #FEDAB6;
    color: var(--primary-text-color);
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    border-color: var(--primary-accent-color);
    font-size: 16px;
    border-radius: 5px;
    font-weight: 400;
  }

  .secondary-button:hover {
    background-color: var(--primary-accent-color);
    color: white;
    font-weight: 600;
  }

  .instagram-logo {
    height: 20px;
    width: 20px;
    vertical-align: middle;
    color: #ffffff;
    padding-right: 5px;
  }

  .aligned-text {
    vertical-align: middle;
  }
  
  .submit-btn {
    width: 100%;
    background-color: var(--primary-accent-color);
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
  }

  a.scroll-link {
    text-decoration: none;
    border-bottom: 2px dotted var(--primary-accent-color);
    color: var(--primary-accent-color);
    font-weight: 500;
  }
  
  .submit-btn:hover {
    background-color: #e57f00;
  }
  
  /* Success message */
  #success-message {
    padding: 15px;
    margin-top: 20px;
    /* Hidden by default, will be shown by server on successful submission */
    display: none;
  }
  
  .success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .success-icon {
    background-color: #4caf50;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  
  .success-title {
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 5px;
  }
  
  .success-message {
    color: #388e3c;
    font-size: 14px;
  }

  .copyright {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
  }
  
  /* Language Toggle Slider */
  /* The switch - the box around the slider */
  .switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 22px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: var(--primary-accent-color);
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-accent-color);
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(14px);
    -ms-transform: translateX(14px);
    transform: translateX(14px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 26px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  } 

  /* Responsive styles */
  @media (max-width: 992px) {
    .main-container {
      flex-direction: column;
    }
    
    .hero-content {
      padding-right: 0;
    }
    
    .registration-form {
      max-width: 100%;
    }    
  }
  
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .hero-text h2 {
      font-size: 32px;
    }
    
    .container {
      padding: 15px;
    }
    
    nav ul li {
      margin-left: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-text h2 {
      font-size: 28px;
    }
    
    .logo h1 {
      font-size: 20px;
    }

    .main-logo {
      height: 48px;
      width: 48px;
    }
    
    nav ul li {
      margin-left: 10px;
    }
    
    .form-container {
      padding: 20px;
    }

    .instagram-button {
      font-size: 12px;
    }

    .top-link-row {
      flex-direction: column-reverse;
      width: fit-content;
      align-items: center;
    }

    .top-link {
      width: fit-content;
    }
  }

  /* Chrome, Safari, Edge, Opera */
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }

  /* Firefox */
  input[type=number] {
      -moz-appearance: textfield;
      appearance: textfield;
  }