* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #f0fdf4, #dcfce7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
}

.home-main-section {
    width: 100%;
    margin: 0px auto;
}

.container {
    width: 100%;
    max-width: 900px;
    background-color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    overflow: hidden;
    margin: 30px auto;
}

.header {
    background: linear-gradient(to right, #22c55e, #16a34a);
    color: white;
    text-align: center;
    padding: 1.5rem;
}

.header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.form-container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-field {
    position: relative;
}

input {
    width: 100%;
    padding: 0.75rem 16px;
    border: 2px solid #bbf7d0;
    border-radius: 0.5rem;
    font-size: 16px;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #4ade80;
}

.amount-display {
    background-color: #f0fdf4;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    color: #15803d;
}

.error-message {
    color: #ef4444;
    text-align: center;
    margin-bottom: 16px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

button {
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.primary-btn {
    background-color: #22c55e;
    color: white;
}

.primary-btn:hover {
    background-color: #16a34a;
}

.secondary-btn {
    background-color: #f0fdf4;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    text-decoration: none;
    color: black;
}

.secondary-btn:hover {
    background-color: #dcfce7;
}

.text-btn {
    color: #15803d;
}

.text-btn:hover {
    background-color: #f0fdf4;
}

.grid-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.icon {
    margin-right: 0.5rem;
}

.about-section {
    margin-top: 20px;
    text-align: left;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.text-about {
    align-items: center;
    width: 100%;
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
    color: #000000;
    background: #f1f1f1;
    padding: 11px;
    border-radius: 8px;
}

.tabs {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.tab {
    padding: 10px 15px;
    cursor: pointer;
    background-color: #f1f1f1;
    border: none;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
    font-weight: bold;
}

.tab.active {
    background-color: #4CAF50;
    color: white;
}

.tab-content {
    display: none;
    padding: 10px 0;
}

.tab-content.active {
    display: block;
}

.header-about {
    background: #4CAF50;
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
}

.header-about h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.header-about p {
    font-size: 18px;
    margin-bottom: 5px;
}

.highlight {
    background: #FFC107;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
}

.about-content {
    padding: 30px;
}

.about-content h2 {
    color: #4CAF50;
    margin: 20px 0 15px;
    font-size: 22px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 5px;
}

.prizes {
    margin: 25px 0;
}

.prize-item {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.prize-item:before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.timing {
    background: #E8F5E9;
    padding: 15px;
    border-radius: 8px;
    margin: 25px 0;
}

.step {
    margin-bottom: 15px;
    display: flex;
}

.step-number {
    background: #4CAF50;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.website-link {
    color: #4CAF50;
    font-weight: bold;
    text-decoration: none;
}

.website-link:hover {
    text-decoration: underline;
}

.timing p {
    margin-top: 5px;
}

.note {
    color: #ff0000;
    font-weight: 700;
}

/*  winner list */
.content {
    padding: 16px;
}

.form-group {
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333333;
}

input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.3s;
}

input[type="text"]:focus,
input[type="tel"]:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}


.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 1rem;
    text-align: center;
}

.btn:hover {
    background: #388E3C;
}

/* winner list */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #DFE6E9;
}

.card-date {
    background: #E8F5E9;
    color: #4CAF50;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.user-list-content {
    padding: 25px;
}

.user-list {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.winner-table {
    max-width: auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

th {
    background-color: #4CAF50;
    color: white;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

.policy-content-main {
    width: 100%;
    margin: 0px auto;
}

.policy-header {
    background: #4CAF50;
    color: white;
    padding: 25px;
    text-align: center;
}

.policy-header h1 {
    font-size: 28px;
}

.policy-content {
    padding: 30px;
}

h2 {
    color: #4CAF50;
    margin: 25px 0 15px;
    font-size: 22px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.note {
    background: #FFF9C4;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    font-weight: 500;
}

/* Footer Styles */
.footer {
    background: #2E7D32;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}


.privacy-note {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 600;
    border-left: 4px solid #f39c12;
}

.privacy-table-of-contents {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid #4CAF50;
    border: 1px solid #e9ecef;
}

.privacy-table-of-contents h2 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.4em;
    border-bottom: none;
    padding-bottom: 0;
}

.privacy-table-of-contents ol {
    list-style: none;
    counter-reset: section-counter;
}

.privacy-table-of-contents li {
    counter-increment: section-counter;
    margin: 8px 0;
    padding: 6px 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.privacy-table-of-contents li::before {
    content: counter(section-counter) ". ";
    color: #4CAF50;
    font-weight: bold;
}

.privacy-table-of-contents a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-table-of-contents a:hover {
    color: #4CAF50;
}

.privacy-policy-content h2 {
    color: #4CAF50;
    font-size: 1.6em;
    margin: 35px 0 18px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #4CAF50;
    position: relative;
}

.privacy-policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background: #45a049;
}

.privacy-policy-content h3 {
    color: #2E7D32;
    font-size: 1.3em;
    margin: 25px 0 12px 0;
}

.privacy-policy-content h4 {
    color: #2E7D32;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
}

.privacy-policy-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-policy-content li {
    margin: 8px 0;
    padding-left: 10px;
}

.privacy-policy-content ul li {
    position: relative;
}

.privacy-policy-content ul li::before {
    content: '●';
    color: #4CAF50;
    position: absolute;
    left: -15px;
}

.privacy-policy-content strong {
    color: #2E7D32;
}

.privacy-policy-content em {
    font-style: italic;
    color: #555;
}

.privacy-policy-content a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-policy-content a:hover {
    color: #45a049;
    text-decoration: underline;
}

.privacy-contact-info {
    background: #4CAF50;
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
}

.privacy-contact-info h3 {
    color: white;
    margin-bottom: 15px;
}

.privacy-contact-info a {
    color: white;
    text-decoration: underline;
}

.privacy-effective-date {
    background: #e8f5e8;
    border: 1px solid #4CAF50;
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    text-align: center;
    font-weight: 600;
    color: #2E7D32;
}

.privacy-contact-info strong {
    color: white;
}

.privacy-blank-space {
    color: #666;
    font-style: italic;
}

.terms-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-subtitle {
    font-size: 1.3rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.terms-updated {
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-style: italic;
}

.terms-content-wrapper {
    padding: 30px;
}

.terms-section {
    margin-bottom: 35px;
    border-bottom: 1px solid #e8f5e8;
    padding-bottom: 25px;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2E7D32;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
}

.terms-content-wrapper .terms-section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #4CAF50, #66BB6A);
    border-radius: 2px;
    top: 13px;
}

.terms-content {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.7;
    color: #333;
}

.terms-list {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-list-item {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #444;
}

.terms-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 20px;
    border-left: 5px solid #4CAF50;
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
    font-weight: 600;
    color: #2E7D32;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.1);
}

.terms-contact {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    border: 2px solid #C8E6C9;
}

.terms-contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E7D32;
    margin-bottom: 15px;
}

.terms-email {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.terms-email:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.terms-disclaimer {
    background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
    border: 2px solid #f8bbd9;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    color: #c62828;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(198, 40, 40, 0.1);
}

.terms-abbreviation {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid #C8E6C9;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.1);
}

.terms-abbreviation-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2E7D32;
    margin-bottom: 20px;
    text-align: center;
}

.terms-abbreviation h3 {
    color: #2E7D32;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid #4CAF50;
}

.terms-abbreviation .terms-content {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.terms-content-wrapper .highlight-brand {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-page{
    background-color: white;
    width: 100vw;
}
.main-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    .about-page .btn-style {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
    }

   .about-page .btn-primary-style {
      background:#22c55e;
      color: white;
      box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

    .about-page .btn-primary-style:hover {
      background: #22c55e;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

   .about-page .btn-secondary-style {
      background: #ffffff;
      color: #1e293b;
      border: 2px solid #e2e8f0;
    }

    .about-page .btn-secondary-style:hover {
      border-color: #22c55e;
    }
.hero-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-area {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #22c55e;
    display: block;
}

.stat-label {
    color: #64748b;
    font-size: 0.875rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Card */
.hero-signup-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    height: fit-content;
}

.card-header-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-main-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input-field {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-field:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.amount-display {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #22c55e;
    margin: 1rem 0;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 12px;
}

/* Prizes Section */
.section-wrapper {
    padding: 4rem 0;
}

.section-header-area {
    text-align: center;
    margin-bottom: 3rem;
}

.section-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.prizes-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.prize-card-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.prize-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
}

.prize-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.prize-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.prize-value {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.prize-description {
    color: #64748b;
}

/* How it Works */
.steps-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

/* Timings */
.timing-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.timing-card-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.timing-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 1rem;
}

.timing-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white !important;
    padding: 4rem 0;
    text-align: center;
}

.cta-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white-style {
    background: white;
    color: #22c55e;
}

.btn-white-style:hover {
    background: #f8fafc;
}

@media (max-width: 600px) {
    .header h1 {
        font-size: 24px;
    }

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

    .about-content {
        padding: 20px;
    }

    .card-header {
        flex-direction: column;
        row-gap: 30px;
    }
}

@media (max-width: 768px) {


    .container {
        padding: 15px;
        margin: 0px auto;
    }

    th,
    td {
        padding: 8px 10px;
    }

    .policy-content {
        padding: 20px;
    }

    .policy-header h1 {
        font-size: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}