/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif !important;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

.page-container {
    min-height: 100vh;

    font-size:14px; 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #475569 0%, #64748b 50%, #475569 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-image: url('https://images.unsplash.com/photo-1597700331582-aab3614b3c0c?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHx2b3RpbmclMjBib290aCUyMGRlbW9jcmFjeXxlbnwxfHx8fDE3NzU2NDAyMzV8MA&ixlib=rb-4.1.0&q=80&w=1080&utm_source=figma&utm_medium=referral');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 896px;
    margin: 0 auto;
    padding: 64px 24px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 12px;
    border-radius: 12px;
    display: inline-flex;
    margin-bottom: 20px;
}

.hero-icon i {
    font-size: 48px;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;

    color:#ffffff; 
}

.hero-description {
    font-size: 18px;
    margin-bottom: 24px;
    color: #e2e8f0;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background-color: #94a3b8;
    color: #475569;
}

.btn-secondary {
    background-color: #64748b;
    color: white;
}

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

/* Pricing Section */
.pricing-section {
    max-width: 896px;
    margin: 0 auto;
    padding: 64px 24px;
}

.section-title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
    color: #111827;
}

.section-subtitle {
    text-align: center;
    color: #4b5563;
    margin-bottom: 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 868px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s;
}

.pricing-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-icon {
    background: #f1f5f9;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.pricing-icon i {
    font-size: 24px;
    color: #475569;
}

.pricing-type {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.pricing-amount {
    font-size: 24px;
    font-weight: bold;
    color: #475569;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 12px;
    color: #6b7280;
}

.pricing-notice {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #4b5563;
    background: #f8fafc;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.pricing-notice i {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

/* Contact Section */
.contact-section {
    background: #f1f5f9;
    padding: 40px 0;
}

.contact-card {
    max-width: 896px;
    margin: 0 auto;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 8px;
}

.contact-icon i {
    font-size: 28px;
    color: #475569;
}

.contact-label {
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-number {
    font-size: 30px;
    font-weight: bold;
    color: #475569;
}

.contact-hours {
    text-align: right;
    color: #4b5563;
}

.contact-sub {
    font-size: 14px;
    color: #6b7280;
}

/* Comparison Table Section */
.comparison-section {
    max-width: 1152px;
    margin: 0 auto;
    padding: 64px 24px;
}

.table-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #d1d5db;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead tr {
    background: #475569;
    color: white;
}

.comparison-table th {
    padding: 12px 16px;
    text-align: center;
    font-weight: 600;
    border-right: 1px solid #64748b;
}

.comparison-table th:last-child {
    border-right: none;
}

.comparison-table td {
    padding: 12px 16px;
    color: #374151;
    border-right: 2px solid #d1d5db;
    text-align: center;
}

.comparison-table td:last-child {
    border-right: none;
}

.comparison-table tr {
    border-bottom: 2px solid #d1d5db;
}

.comparison-table tr:last-child {
    border-bottom: none;
}

.table-header-cell {
    font-weight: 600;
    color: #1f2937;
    background: #f8fafc;
}

.table-list-cell {
    text-align: left;
    padding-left: 16px;
}

.table-list-cell div {
    margin: 4px 0;
}

.table-note {
    font-size: 14px;
    color: #4b5563;
}

/* Guide Section */
.guide-section {
    background: #f8fafc;
    padding: 64px 24px;
}

.guide-grid {
    max-width: 1052px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.guide-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: box-shadow 0.3s;
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.guide-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.guide-icon {
    background: #f1f5f9;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: background-color 0.3s;
}

.guide-card:hover .guide-icon {
    background: #e2e8f0;
}

.guide-icon i {
    font-size: 28px;
    color: #475569;
}

.guide-step {
    font-size: 12px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 8px;
}

.guide-title {
    font-size: 16px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.guide-desc {
    font-size: 14px;
    color: #4b5563;
}

/* Footer */
.footer {
    background: #f3f4f6;
    border-top: 1px solid #d1d5db;
    padding: 32px 24px;
    text-align: center;
}

.footer-text {
    color: #374151;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-copyright {
    color: #6b7280;
    font-size: 12px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 16px;
}

.modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: linear-gradient(to right, #475569, #334155);
    color: white;
    padding: 16px 24px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header::before, .modal-header::after {
    display: none !important;
    content: none !important;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: bold;

    margin:0;
    color: white;
    float:left;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;

    float:right;
}

.modal-close:hover {
    color: #e5e7eb;
}

.modal-close i {
    font-size: 24px;
}

.modal-body {
    padding: 24px;
}

.modal-notice {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.modal-notice p {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
}

.modal-input-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-input-group label {
    font-weight: 600;
    color: #1f2937;
    min-width: 100px;
    font-size:13px;
}

.modal-input {
    flex: 1;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
}

.modal-input:focus {
    outline: none;
    border-color: #475569;
    box-shadow: 0 0 0 3px rgba(71, 85, 105, 0.1);
}

.modal-agreement {
    border: 2px solid #d1d5db;
    border-radius: 8px;
    padding: 20px;

    font-size:12px;
}

.agreement-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.agreement-checkbox {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.agreement-label {
    flex: 1;
    cursor: pointer;
}

.required {
    color: #dc2626;
    font-weight: bold;
}

.agreement-title {
    font-weight: bold;
    color: #1f2937;
    margin-left: 4px;
}

.agreement-text {
    /*font-size: 14px;*/
    color: #374151;
    margin-top: 8px;
    line-height: 1.6;
}

.agreement-details {
    background: #f9fafb;
    padding: 16px;
    border-radius: 8px;

    font-size:12px;
}

.agreement-divider {
    text-align: center;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.agreement-description {
    /*font-size: 14px;*/
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
}

.agreement-table-container {
    overflow-x: auto;
}

.agreement-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #9ca3af;
}

.agreement-table th {
    background: #f1f5f9;
    border: 1px solid #9ca3af;
    padding: 8px 12px;
    /*font-size: 14px;*/
    font-weight: 600;
    color: #1f2937;

    min-width: 105px;
}

.agreement-table td {
    border: 1px solid #9ca3af;
    padding: 12px;
    /*font-size: 14px;*/
    color: #374151;
    vertical-align: top;

    text-align: left !important;
}

.agreement-table .text-center {
    text-align: center;
}

.modal-footer {
    background: #f9fafb;
    padding: 16px 24px;
    border-radius: 0 0 8px 8px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-cancel {
    padding: 8px 24px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cancel:hover {
    background: #f3f4f6;
}

.btn-submit {
    padding: 8px 24px;
    background: #475569;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background: #334155;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-hours {
        text-align: center;
    }

    .guide-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .modal-input-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .table-container {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}
