*,
p {
    padding: 0;
    margin: 0;
    line-height: 1.4;
}

.page-title h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.content-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Personal Code Section */
.code-section {
    /*   background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      animation: slideUp 0.6s ease-out;
      transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.code-section:hover {
    /* transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3); */
}

.code-section .section {
    background: #E6F8FF;
    border-radius: 26px;
    padding: 35px 20px;
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
}

.code-section .section .title {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.code-section .section .text {
    color: #4B5563;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

.section-header {
    /* display: flex;
      align-items: center;
      margin-bottom: 30px;
      gap: 15px; */
}

.section-title {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    line-height: 1.5;

}

.section-subtitle {
    font-size: 14px;
    color: #6B7280;
    /* margin-top: 5px; */
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Benefits Section */
.section.benefits {
    background: #FFF7DE;
    border-radius: 36px;
    padding: 20px;
}

.section.benefits .title {
    margin-bottom: 20px;
    color: #704D00;
}

/* .benefits-title {
      color: #704D00;
      font-weight: 700;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
  } */

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    /* width: 50px;
      height: 50px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.benefit-icon svg {
    /* width: 24px;
      height: 24px;
      fill: #f39c12; */
}

.benefit-text {
    flex: 1;
}

.benefit-text h4 {
    color: #704D00;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-text p {
    color: #704D00;
    font-size: 14px;
    line-height: 1.5;
}

/* Input Section */
.input-section {
    /* margin: 35px 0; */
}

.input-label {
    display: block;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 12px;
}

.code-input {
    width: 100%;
    padding: 16px !important;
    border: 0 !important;
    border-radius: 16px !important;
    font-size: 16px !important;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #000 !important;
    background-color: #E6F8FF !important;
    margin-bottom: 16px;
}

.code-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: #f8f9ff;
}

.code-input::placeholder {
    color: #bdc3c7;
    letter-spacing: 1px;
}

/* Action Button */
.apply-button {
    width: 100%;
    padding: 16px;
    background: #00B5FF;
    color: white;
    border: none;
    border-radius: 26px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(0, 181, 255, 0.3); */
    /* margin-top: 10px; */
}

.apply-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 181, 255, 0.4);
    background: linear-gradient(135deg, #00d4ff 0%, #00b5ff 100%);
}

.apply-button:active {
    transform: translateY(-1px);
}

.apply-button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Smart Code Info */
.smart-code-info {
    background: #f0f8ff;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border-right: 5px solid #667eea;
}

.smart-code-info h4 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 700;
}

.smart-code-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Where to find Section */
.section.where-to-find {
    justify-content: space-between;
    flex-direction: row-reverse;
}

/* 
  .where-to-find-title {
      font-size: 1.2rem;
      color: #2c3e50;
      font-weight: 700;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .where-to-find-icon {
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .where-to-find-icon svg {
      width: 20px;
      height: 20px;
      fill: #667eea;
  }

  .where-to-find-text {
      color: #7f8c8d;
      font-size: 0.95rem;
      line-height: 1.7;
  }

  .where-to-find-image {
      margin-top: 20px;
      text-align: center;
  }

  .where-to-find-image img {
      max-width: 200px;
      height: auto;
      border-radius: 10px;
  } */

/* Status Messages */
.status-message {
    padding: 18px;
    border-radius: 12px;
    margin: 20px 0;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.status-message.success {
    background: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
    display: block;
}

.status-message.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
    display: block;
}

.status-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 5px solid #17a2b8;
    display: block;
}

/* Loading State */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 1.8rem;
    }

    .page-title p {
        font-size: 1rem;
    }

    .code-section {
        padding: 25px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .benefits-section {
        padding: 20px;
    }

    .code-input {
        padding: 14px;
        font-size: 1rem;
    }

    .apply-button {
        padding: 14px;
        font-size: 1rem;
    }

    .section-icon {
        width: 50px;
        height: 50px;
    }

    .section-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {


    .page-title h1 {
        font-size: 1.5rem;
    }

    .content-wrapper {
        gap: 20px;
    }

    .code-section {
        padding: 20px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
    }
}