 body {
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
      background: #f5f7fa;
    }

section.register-page {
      padding: 60px 0;
    }

    /* Hero Section */
    .register-page-hero {
      background: linear-gradient(135deg, #DC143C 0%, #E74C3C 100%);
      padding: 100px 0;
      color: white;
      text-align: center;
      margin-top: 120px;
      position: relative;
      overflow: hidden;
    }

    .register-page-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      z-index: 1;
    }

    .register-page-hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      z-index: 1;
    }

    .register-page-hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 15px;
      color: white;
      letter-spacing: -1px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 2;
    }

    .register-page-hero p {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.95);
      max-width: 600px;
      margin: 0 auto;
      font-weight: 500;
      line-height: 1.6;
      position: relative;
      z-index: 2;
    }

    /* Main Container */
    .register-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Two Column Section */
    .register-content-wrapper {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      align-items: start;
    }

    /* Register Form */
    .register-form-box {
      background: white;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      border-top: 5px solid #DC143C;
      position: relative;
      overflow: hidden;
    }

    .form-title {
      font-size: 1.8rem;
      color: #1a1a1a;
      margin-bottom: 8px;
      font-weight: 800;
      background: linear-gradient(135deg, #DC143C, #E74C3C);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .form-subtitle {
      font-size: 0.95rem;
      color: #999;
      margin-bottom: 30px;
      font-weight: 500;
    }

    .form-section {
      margin-bottom: 28px;
      padding-bottom: 22px;
      border-bottom: 2px solid #f5f5f5;
    }

    .form-section:last-of-type {
      border-bottom: none;
    }

    .form-section-header {
      font-size: 1.1rem;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding-bottom: 10px;
      border-bottom: 3px solid #FFD700;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 7px;
      font-size: 0.9rem;
      text-transform: capitalize;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 11px 14px;
      border: 2px solid #e8e8e8;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      box-sizing: border-box;
      background: #fafafa;
      color: #1a1a1a;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-row.full {
      grid-template-columns: 1fr;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 90px;
      font-family: 'Inter', sans-serif;
    }

    .form-submit-btn {
      background: linear-gradient(135deg, #DC143C, #E74C3C);
      color: white;
      border: none;
      padding: 13px 40px;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      margin-top: 10px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      box-shadow: 0 8px 25px rgba(220, 20, 60, 0.2);
    }

    .form-note {
      font-size: 0.8rem;
      color: #999;
      margin-top: 12px;
      text-align: center;
      font-style: italic;
    }

    /* Registration Type Cards */
    .reg-type-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin: 18px 0;
    }

    .reg-type-card {
      padding: 10px 12px;
      border: 2px solid #e8e8e8;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      background: #fafafa;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .reg-type-label {
      padding-left: 0;
      position: relative;
      flex: 1;
    }

    .reg-type-card input {
      margin-top: 4px;
      flex: 0 0 auto;
    }

    .reg-type-label .title {
      font-weight: 700;
      color: #1a1a1a;
      font-size: 0.95rem;
      margin-bottom: 2px;
    }

    .reg-type-label .price {
      color: #DC143C;
      font-weight: 800;
      font-size: 1rem;
      margin-bottom: 1px;
    }

    .reg-type-label .desc {
      font-size: 0.75rem;
      color: #999;
      line-height: 1.25;
    }

    /* Checkboxes */
    .checkbox-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 18px 0;
    }

    .checkbox-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .checkbox-item label {
      margin: 0;
      cursor: pointer;
      color: #666;
      font-size: 0.9rem;
      font-weight: 500;
      line-height: 1.4;
    }

    /* Sidebar */
    .register-sidebar {
      display: flex;
      flex-direction: column;
      gap: 25px;
      position: relative;
    }

    .sidebar-image {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      margin-top: 30px;
    }

    .sidebar-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 16px;
    }

    .sidebar-box {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .sidebar-box h3 {
      font-size: 1.2rem;
      color: #1a1a1a;
      margin-bottom: 20px;
      font-weight: 700;
      margin-top: 0;
    }

    .sidebar-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar-box li {
      padding: 12px 0;
      color: #666;
      font-size: 0.95rem;
      border-bottom: 1px solid #f0f0f0;
      line-height: 1.5;
    }

    .sidebar-box li:last-child {
      border-bottom: none;
    }

    .sidebar-box li:before {
      content: '✓ ';
      color: #DC143C;
      font-weight: 700;
      margin-right: 8px;
    }

    .sidebar-box.highlight {
      background: #FFEBEE;
      border-left: 4px solid #DC143C;
      color: #1a1a1a;
    }

    .sidebar-box.highlight h3 {
      color: #B71C1C;
    }

    .sidebar-box.highlight li {
      color: #1a1a1a;
      border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .sidebar-box.highlight li:before {
      color: #DC143C;
    }

    .sidebar-box.yellow {
      background: #E8F5E9;
      border-left: 4px solid #4CAF50;
    }

    .sidebar-box.yellow h3 {
      color: #2E7D32;
    }

    .sidebar-box.yellow li {
      color: #1a1a1a;
      border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .sidebar-box.yellow li:before {
      color: #4CAF50;
    }

    .sidebar-box.blue {
      background: #E3F2FD;
      border-left: 4px solid #1976D2;
    }

    .sidebar-box.blue h3 {
      color: #1565C0;
    }

    .sidebar-box.blue li {
      color: #1a1a1a;
      border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .sidebar-box.blue li:before {
      color: #1976D2;
    }

    /* Success Message */
    .success-message {
      background: #10b981;
      color: white;
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 20px;
      display: none;
      animation: slideDown 0.4s ease;
      text-align: center;
      font-weight: 600;
    }

    .success-message.show {
      display: block;
    }

    @keyframes float-icon {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      50% {
        transform: translateY(-40px) rotate(10deg);
      }
    }

    /* Floating Icons */
    .floating-icons {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1;
      overflow: hidden;
    }

    .floating-icon {
      position: absolute;
      font-size: 3rem;
      opacity: 0.2;
      animation: float-icon 6s ease-in-out infinite;
    }

    .floating-icon:nth-child(1) {
      top: 20%;
      left: 10%;
      animation-delay: 0s;
      font-size: 2.5rem;
    }

    .floating-icon:nth-child(2) {
      top: 60%;
      right: 10%;
      animation-delay: 1s;
      font-size: 2.8rem;
    }

    .floating-icon:nth-child(3) {
      top: 15%;
      right: 15%;
      animation-delay: 2s;
      font-size: 2.2rem;
    }

    .floating-icon:nth-child(4) {
      bottom: 20%;
      left: 15%;
      animation-delay: 1.5s;
      font-size: 2.6rem;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .register-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .register-form-box {
        padding: 40px;
      }
    }

    @media (max-width: 768px) {
      .register-page-hero {
        padding: 60px 0;
        margin-top: 100px;
      }

      .register-page-hero h1 {
        font-size: 2rem;
      }

      .register-page-hero p {
        font-size: 1rem;
      }

      .register-form-box {
        padding: 30px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .form-title {
        font-size: 1.5rem;
      }

      .register-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }

    @media (max-width: 480px) {
      .register-page-hero h1 {
        font-size: 1.6rem;
      }

      .register-form-box {
        padding: 20px;
      }

      .sidebar-box {
        padding: 20px;
      }

      .form-group {
        margin-bottom: 15px;
      }

      .register-sidebar {
        display: none;
      }
    }



body {
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
      background: #f5f5f5;
    }

    /* Hero Section */
    .schedule-hero {
      background: linear-gradient(135deg, #DC143C 0%, #E74C3C 100%);
      padding: 80px 0;
      color: white;
      text-align: center;
      margin-top: 120px;
      position: relative;
      overflow: hidden;
    }

    .schedule-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      z-index: 1;
      animation: float 8s ease-in-out infinite;
    }

    .schedule-hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      z-index: 1;
      animation: float 10s ease-in-out infinite reverse;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-30px);
      }
    }

    .schedule-hero h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 15px;
      position: relative;
      z-index: 2;
    }

    .schedule-hero p {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.95);
      position: relative;
      z-index: 2;
    }

    .schedule-hero .container {
      position: relative;
      z-index: 2;
    }

    /* Schedule Container */
    .schedule-wrapper {
      max-width: 1300px;
      margin: 60px auto;
      padding: 0 20px;
    }

    /* Schedule Card Layout */
    .schedule-card-container {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 30px;
      align-items: flex-start;
    }

    /* Left Side - Date & Title */
    .schedule-left {
      position: relative;
      padding: 60px;
      background: linear-gradient(135deg, #D4A574 0%, #E8B8A5 100%);
      border-radius: 20px;
      color: white;
      text-align: center;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .schedule-left::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      z-index: 1;
    }

    .schedule-left::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 350px;
      height: 350px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      z-index: 1;
    }

    .schedule-date {
      position: relative;
      z-index: 2;
      margin-bottom: 40px;
    }

    .schedule-date-number {
      font-size: 4.5rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 10px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    }

    .schedule-date-month {
      font-size: 2.2rem;
      font-weight: 700;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
    }

    .schedule-title {
      position: relative;
      z-index: 2;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      font-size: 1.8rem;
      font-weight: 900;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-top: 30px;
      display: inline-block;
      line-height: 1.1;
    }

    .schedule-description {
      position: relative;
      z-index: 2;
      margin-top: 40px;
      font-size: 0.9rem;
      line-height: 1.6;
      opacity: 0.95;
    }

    /* Right Side - Schedule Items */
    .schedule-right {
      background: white;
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .schedule-right::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: rgba(220, 20, 60, 0.05);
      border-radius: 50%;
      z-index: 0;
    }

    .schedule-right::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -5%;
      width: 250px;
      height: 250px;
      background: rgba(255, 215, 0, 0.08);
      border-radius: 50%;
      z-index: 0;
    }

    /* Tab Navigation */
    .schedule-tabs {
      display: flex;
      gap: 12px;
      margin-bottom: 40px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .tab-btn {
      background: white;
      border: 2px solid transparent;
      padding: 10px 20px;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
      color: #666;
      transition: all 0.3s ease;
    }

    .tab-btn.active {
      background: #FFD700;
      color: #1a1a1a;
      border-color: transparent;
      box-shadow: 0 6px 16px rgba(255, 215, 0, 0.25);
    }

    .tab-btn:hover:not(.active) {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Schedule Items */
    .schedule-items {
      position: relative;
      z-index: 1;
    }

    .schedule-day {
      display: none;
    }

    .schedule-day.active {
      display: block;
      animation: fadeIn 0.4s ease;
    }

    @keyframes float-icon {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      50% {
        transform: translateY(-40px) rotate(10deg);
      }
    }

    /* Floating Icons */
    .floating-icons {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1;
      overflow: hidden;
    }

    .floating-icon {
      position: absolute;
      font-size: 3rem;
      opacity: 0.2;
      animation: float-icon 6s ease-in-out infinite;
    }

    .floating-icon:nth-child(1) {
      top: 20%;
      left: 10%;
      animation-delay: 0s;
      font-size: 2.5rem;
    }

    .floating-icon:nth-child(2) {
      top: 60%;
      right: 10%;
      animation-delay: 1s;
      font-size: 2.8rem;
    }

    .floating-icon:nth-child(3) {
      top: 15%;
      right: 15%;
      animation-delay: 2s;
      font-size: 2.2rem;
    }

    .floating-icon:nth-child(4) {
      bottom: 20%;
      left: 15%;
      animation-delay: 1.5s;
      font-size: 2.6rem;
    }

    .schedule-item {
      margin-bottom: 30px;
      padding-bottom: 30px;
      border-bottom: 2px solid #f0f0f0;
      transition: all 0.3s ease;
    }

    .schedule-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .schedule-item:hover {
      padding-left: 15px;
      border-left: 4px solid #DC143C;
    }

    .item-time {
      font-size: 1.8rem;
      font-weight: 800;
      color: #DC143C;
      margin-bottom: 8px;
    }

    .item-label {
      font-size: 0.75rem;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .item-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 8px;
    }

    .item-description {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.6;
    }

    .item-location {
      font-size: 0.9rem;
      color: #999;
      margin-top: 10px;
      font-style: italic;
    }

    /* Action Buttons */
    .schedule-actions {
      display: flex;
      gap: 15px;
      margin-top: 50px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .btn-schedule {
      padding: 14px 40px;
      border-radius: 25px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      text-decoration: none;
      display: inline-block;
    }

    .btn-download {
      background: linear-gradient(135deg, #DC143C, #E74C3C);
      color: white;
    }

    .btn-download:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(220, 20, 60, 0.35);
    }

    .btn-register {
      background: #FFD700;
      color: #1a1a1a;
    }

    .btn-register:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 215, 0, 0.35);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .schedule-card-container {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .schedule-left {
        padding: 40px;
      }

      .schedule-date-number {
        font-size: 3.5rem;
      }

      .schedule-right {
        padding: 40px;
      }
    }

    @media (max-width: 768px) {
      .schedule-hero {
        padding: 50px 0;
        margin-top: 96px;
      }

      .schedule-hero h1 {
        font-size: 1.9rem;
      }

      .schedule-hero p {
        font-size: 0.95rem;
      }

      .schedule-wrapper {
        margin: 28px auto;
      }

      .schedule-left {
        padding: 24px;
        border-radius: 16px;
      }

      .schedule-date-number {
        font-size: 2.5rem;
      }

      .schedule-date-month {
        font-size: 1.35rem;
      }

      .schedule-right {
        padding: 24px;
        border-radius: 16px;
      }

      .schedule-tabs {
        gap: 8px;
        margin-bottom: 26px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
      }

      .tab-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        flex: 0 0 auto;
        white-space: nowrap;
      }

      .item-time {
        font-size: 1.15rem;
      }

      .item-label {
        font-size: 0.68rem;
      }

      .item-title {
        font-size: 0.98rem;
      }

      .item-description {
        font-size: 0.88rem;
      }

      .item-location {
        font-size: 0.8rem;
      }

      .schedule-item {
        margin-bottom: 22px;
        padding-bottom: 22px;
      }

      .schedule-actions {
        margin-top: 32px;
        gap: 10px;
      }

      .btn-schedule {
        padding: 10px 22px;
        font-size: 0.85rem;
      }
    }

    @media (max-width: 480px) {
      .schedule-hero h1 {
        font-size: 1.6rem;
      }

      .schedule-left {
        padding: 20px;
      }

      .schedule-date-number {
        font-size: 2.2rem;
      }

      .schedule-date-month {
        font-size: 1.15rem;
      }

      .schedule-right {
        padding: 18px;
        border-radius: 15px;
      }

      .schedule-tabs {
        gap: 6px;
        margin-bottom: 22px;
      }

      .tab-btn {
        padding: 7px 12px;
        font-size: 0.72rem;
      }

      .item-time {
        font-size: 1.05rem;
      }

      .item-title {
        font-size: 0.92rem;
      }

      .item-description {
        font-size: 0.82rem;
      }

      .item-location {
        font-size: 0.76rem;
      }

      .schedule-actions {
        flex-direction: column;
        margin-top: 26px;
      }

      .btn-schedule {
        width: 100%;
        padding: 10px 16px;
      }
    }

    @media (max-width: 360px) {
      .schedule-hero {
        padding: 42px 0;
      }

      .schedule-hero h1 {
        font-size: 1.45rem;
      }

      .schedule-hero p {
        font-size: 0.88rem;
      }

      .schedule-date-number {
        font-size: 1.95rem;
      }

      .schedule-date-month {
        font-size: 1rem;
      }

      .schedule-right,
      .schedule-left {
        padding: 16px;
      }

      .tab-btn {
        padding: 7px 10px;
        font-size: 0.68rem;
      }

      .item-time {
        font-size: 0.98rem;
      }

      .item-title {
        font-size: 0.88rem;
      }

      .item-description,
      .item-location {
        font-size: 0.78rem;
      }
    }



  body {
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
    }

    section.contact-page {
      padding: 60px 0;
    }

    /* Hero Section */
    .contact-page-hero {
      background: linear-gradient(135deg, #DC143C 0%, #E74C3C 100%);
      padding: 100px 0;
      color: white;
      text-align: center;
      margin-top: 120px;
      position: relative;
      overflow: hidden;
    }

    .contact-page-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      z-index: 1;
    }

    .contact-page-hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      z-index: 1;
    }

    .contact-page-hero .contact-container {
      position: relative;
      z-index: 2;
    }

    .contact-page-hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 15px;
      color: white;
      letter-spacing: -1px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .contact-page-hero p {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.95);
      max-width: 600px;
      margin: 0 auto;
      font-weight: 500;
      line-height: 1.6;
    }

    .contact-page-hero::before,
    .contact-page-hero::after {
      animation: float 8s ease-in-out infinite;
    }

    .contact-page-hero::after {
      animation-duration: 10s;
      animation-direction: reverse;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-30px);
      }
    }

    /* Floating Icons */
    .floating-icons {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1;
      overflow: hidden;
    }

    .floating-icon {
      position: absolute;
      font-size: 3rem;
      opacity: 0.2;
      animation: float-icon 6s ease-in-out infinite;
    }

    .floating-icon:nth-child(1) {
      top: 20%;
      left: 10%;
      animation-delay: 0s;
      font-size: 2.5rem;
    }

    .floating-icon:nth-child(2) {
      top: 60%;
      right: 10%;
      animation-delay: 1s;
      font-size: 2.8rem;
    }

    .floating-icon:nth-child(3) {
      top: 15%;
      right: 15%;
      animation-delay: 2s;
      font-size: 2.2rem;
    }

    .floating-icon:nth-child(4) {
      bottom: 20%;
      left: 15%;
      animation-delay: 1.5s;
      font-size: 2.6rem;
    }

    @keyframes float-icon {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      50% {
        transform: translateY(-40px) rotate(10deg);
      }
    }

    /* Main Content Container */
    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Contact Info Cards Section */
    .contact-cards-section {
      padding: 60px 0;
      background: white;
    }

    .contact-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .contact-card {
      background: white;
      padding: 35px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-top: 4px solid #DC143C;
      text-align: center;
    }

    .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .contact-card .icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      display: block;
    }

    .contact-card .label {
      font-size: 0.85rem;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .contact-card .title {
      font-size: 1.15rem;
      color: #1a1a1a;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .contact-card .content {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 12px;
      line-height: 1.6;
    }

    .contact-card .content a {
      color: #DC143C;
      text-decoration: none;
      font-weight: 700;
      display: block;
      transition: all 0.3s ease;
    }

    .contact-card .content a:hover {
      color: #E74C3C;
    }

    .contact-card .description {
      font-size: 0.8rem;
      color: #999;
      margin-top: 12px;
      font-style: italic;
    }

    /* Two Column Section */
    .contact-content-wrapper {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      align-items: start;
    }

    /* Contact Form */
    .contact-form-box {
      background: #FFD700;
      padding: 50px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .form-title {
      font-size: 1.8rem;
      color: #1a1a1a;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .form-subtitle {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 30px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 15px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      box-sizing: border-box;
      background: white;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: #DC143C;
      box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
      font-family: 'Inter', sans-serif;
    }

    .form-submit-btn {
      background: linear-gradient(135deg, #DC143C, #E74C3C);
      color: white;
      border: none;
      padding: 14px 40px;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      margin-top: 10px;
    }

    .form-submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(220, 20, 60, 0.3);
    }

    .form-note {
      font-size: 0.85rem;
      color: #999;
      margin-top: 15px;
    }

    /* Sidebar */
    .contact-sidebar {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .sidebar-box {
      background: #FFD700;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .sidebar-box h3 {
      font-size: 1.2rem;
      color: #1a1a1a;
      margin-bottom: 20px;
      font-weight: 700;
      margin-top: 0;
    }

    .sidebar-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar-box li {
      padding: 10px 0;
      color: #1a1a1a;
      font-size: 0.95rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .sidebar-box li:last-child {
      border-bottom: none;
    }

    .sidebar-box strong {
      display: block;
      font-weight: 700;
      color: #DC143C;
      margin-top: 5px;
    }

    .sidebar-box.red-box {
      background: linear-gradient(135deg, #DC143C, #E74C3C);
      color: white;
    }

    .sidebar-box.red-box h3 {
      color: white;
    }

    .sidebar-box.red-box li {
      color: rgba(255, 255, 255, 0.95);
      border-bottom-color: rgba(255, 255, 255, 0.2);
    }

    .sidebar-box.red-box strong {
      color: #FFD700;
    }

    .sidebar-box.support-box {
      background: #E8F5E9;
      border-left: 4px solid #4CAF50;
    }

    .sidebar-box.support-box h3 {
      color: #2E7D32;
    }

    .sidebar-box.response-box {
      background: #E3F2FD;
      border-left: 4px solid #1976D2;
    }

    .sidebar-box.response-box h3 {
      color: #1565C0;
    }

    .sidebar-box.response-box li {
      color: #1a1a1a;
    }

    .sidebar-box.response-box strong {
      color: #1976D2;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .contact-form-box {
        padding: 40px;
      }

      .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      .contact-page-hero {
        padding: 55px 0;
        margin-top: 96px;
      }

      .contact-page-hero h1 {
        font-size: 1.9rem;
      }

      .contact-page-hero p {
        font-size: 0.95rem;
        max-width: 90%;
      }

      .contact-card {
        padding: 24px;
        border-radius: 10px;
      }

      .contact-form-box {
        padding: 28px 22px;
        border-radius: 10px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .form-title {
        font-size: 1.45rem;
      }

      .contact-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 15px !important;
      }

      .contact-card .icon {
        font-size: 1.9rem;
      }

      .contact-card .title {
        font-size: 0.98rem;
      }

      .contact-card .label {
        font-size: 0.72rem;
      }

      .contact-card .content,
      .contact-card .description {
        font-size: 0.82rem;
      }

      .contact-sidebar {
        gap: 18px;
      }

      .sidebar-box {
        padding: 22px;
        border-radius: 10px;
      }

      .sidebar-box h3 {
        font-size: 1.05rem;
        margin-bottom: 16px;
      }
    }

    @media (max-width: 480px) {
      section.contact-page {
        padding: 42px 0;
      }

      .contact-page-hero h1 {
        font-size: 1.55rem;
      }

      .contact-page-hero p {
        font-size: 0.88rem;
      }

      .contact-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
      }

      .contact-card {
        padding: 16px 12px;
      }

      .contact-card .icon {
        font-size: 1.45rem;
        margin-bottom: 8px;
      }

      .contact-card .label {
        font-size: 0.66rem;
        letter-spacing: 0.6px;
        margin-bottom: 6px;
      }

      .contact-form-box {
        padding: 20px 16px;
      }

      .form-title {
        font-size: 1.3rem;
      }

      .form-subtitle {
        font-size: 0.85rem;
      }

      .sidebar-box {
        padding: 18px 16px;
      }

      .form-group {
        margin-bottom: 14px;
      }

      .form-group label {
        font-size: 0.9rem;
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
        padding: 11px 12px;
        font-size: 0.92rem;
      }

      .form-submit-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
      }

      .contact-card .content a {
        word-break: break-word;
      }
    }

    @media (max-width: 360px) {
      .contact-page-hero {
        padding: 46px 0;
      }

      .contact-page-hero h1 {
        font-size: 1.4rem;
      }

      .contact-page-hero p {
        font-size: 0.82rem;
      }

      .contact-form-box,
      .sidebar-box,
      .contact-card {
        padding: 14px;
      }

      .contact-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
      }

      .contact-card .title {
        font-size: 0.84rem;
      }

      .contact-card .content,
      .contact-card .description {
        font-size: 0.7rem;
      }

      .form-title {
        font-size: 1.2rem;
      }

      .form-submit-btn {
        padding: 11px 18px;
      }
    }

    /*Thabk You page*/
    body {
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
      background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f8 100%);
    }

    /* Hero Section */
    .thankyou-hero {
      background: linear-gradient(135deg, #0f2245 0%, #244783 55%, #d31941 100%);
      padding: 100px 0;
      color: white;
      text-align: center;
      margin-top: 120px;
      position: relative;
      overflow: hidden;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .thankyou-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      z-index: 1;
    }

    .thankyou-hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -5%;
      width: 400px;
      height: 400px;
      background: rgba(255, 210, 71, 0.15);
      border-radius: 50%;
      z-index: 1;
    }

    .thankyou-hero-content {
      position: relative;
      z-index: 2;
      animation: slideUp 0.8s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .checkmark-icon {
      width: 100px;
      height: 100px;
      background: #4CAF50;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 30px;
      font-size: 50px;
      box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
      animation: scaleIn 0.6s ease-out;
    }

    @keyframes scaleIn {
      from {
        transform: scale(0);
      }
      to {
        transform: scale(1);
      }
    }

    .thankyou-hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 15px;
      color: white;
      letter-spacing: -1px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .thankyou-hero p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.95);
      max-width: 650px;
      margin: 0 auto;
      font-weight: 500;
      line-height: 1.7;
    }

    /* Container */
    .thankyou-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Details Section */
    .details-section {
      padding: 60px 0;
    }

    .details-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      padding: 50px;
      margin-bottom: 40px;
      border-top: 5px solid #DC143C;
      animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .details-card h2 {
      color: #0f2245;
      font-size: 1.8rem;
      margin-bottom: 30px;
      text-align: center;
      font-weight: 800;
    }

    .details-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-bottom: 30px;
    }

    .detail-item {
      padding: 20px;
      background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f8 100%);
      border-radius: 12px;
      border-left: 4px solid #DC143C;
    }

    .detail-label {
      font-size: 0.85rem;
      color: #61708a;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 8px;
    }

    .detail-value {
      font-size: 1.3rem;
      color: #1d2c45;
      font-weight: 800;
      word-break: break-all;
    }

    .registration-number-container {
      background: linear-gradient(135deg, #DC143C 0%, #d31941 100%);
      color: white;
      padding: 40px;
      border-radius: 16px;
      text-align: center;
      margin: 30px 0;
      box-shadow: 0 15px 40px rgba(220, 20, 60, 0.2);
    }

    .registration-number-container .detail-label {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 10px;
    }

    .registration-number-container .detail-value {
      color: #FFD700;
      font-size: 2.2rem;
      letter-spacing: 2px;
      font-family: 'Courier New', monospace;
    }

    .confirmation-message {
      background: #E8F5E9;
      border: 2px solid #4CAF50;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 30px;
      color: #2E7D32;
      text-align: center;
      font-weight: 600;
    }

    .next-steps {
      background: #E3F2FD;
      border-radius: 12px;
      padding: 30px;
      margin-top: 30px;
      border-left: 4px solid #1976D2;
    }

    .next-steps h3 {
      color: #1565C0;
      margin-bottom: 15px;
      font-size: 1.2rem;
    }

    .next-steps ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .next-steps li {
      padding: 10px 0;
      color: #1a1a1a;
      padding-left: 30px;
      position: relative;
      line-height: 1.6;
    }

    .next-steps li:before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #1976D2;
      font-weight: 800;
      font-size: 1.2rem;
    }

    /* Action Buttons */
    .action-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .btn-primary-action {
      background: linear-gradient(135deg, #DC143C, #E74C3C);
      color: white;
      padding: 16px 40px;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .btn-primary-action:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(220, 20, 60, 0.35);
    }

    .btn-secondary-action {
      background: white;
      color: #DC143C;
      padding: 16px 40px;
      border: 2px solid #DC143C;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .btn-secondary-action:hover {
      background: #DC143C;
      color: white;
      transform: translateY(-3px);
    }

    .print-btn {
      background: #f5f7fa;
      color: #1a1a1a;
      padding: 12px 30px;
      border: 2px solid #dbe3f0;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .print-btn:hover {
      background: #dbe3f0;
      transform: translateY(-2px);
    }

    /* Footer Info */
    .footer-info {
      background: white;
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      color: #61708a;
      margin-top: 30px;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .footer-info strong {
      color: #1d2c45;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .thankyou-hero {
        padding: 60px 20px;
        margin-top: 100px;
        min-height: 300px;
      }

      .thankyou-hero h1 {
        font-size: 2.2rem;
      }

      .thankyou-hero p {
        font-size: 1rem;
      }

      .details-card {
        padding: 30px;
      }

      .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .action-buttons {
        flex-direction: column;
      }

      .btn-primary-action,
      .btn-secondary-action {
        width: 100%;
      }

      .registration-number-container .detail-value {
        font-size: 1.6rem;
      }
    }

    @media print {
      body {
        background: white;
      }

      .thankyou-hero {
        page-break-after: avoid;
      }

      .action-buttons,
      .print-btn {
        display: none;
      }

      .details-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
      }
    }


    