.nav1{
    width:100%;
    height: 40px;
    background-color: #46bc68;
}
.back {
    position: relative;
    width: 100%;
    height: 850px;
}
 

.section{
    background-color: rgb(235, 235, 235);
}
.back3{
    background-color: rgb(235, 235, 235);
}
 
.back2 {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 100px 0px;
}

/* Certificate Section Styles */
.certificate-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.company-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #46bc68 0%, #28a745 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(70, 188, 104, 0.3);
}

.company-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin: 40px 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #46bc68;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #007bff;
}

/* Certification Introduction Styles */
.certification-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #46bc68;
}

.certification-intro p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.certification-types {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.certification-types li {
    background: #ffffff;
    margin: 10px 0;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #46bc68;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.certification-types li:hover {
    transform: translateX(5px);
}

.certification-types strong {
    color: #46bc68;
    font-weight: 600;
}

.regulatory-documents {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.regulatory-documents li {
    background: #ffffff;
    margin: 8px 0;
    padding: 12px 18px;
    border-radius: 6px;
    border-left: 3px solid #007bff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    transition: all 0.2s ease;
}

.regulatory-documents li:hover {
    background: #f8f9fa;
    border-left-color: #0056b3;
}

/* Certification Conditions Styles */
.certification-conditions {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.conditions-list {
    list-style: none;
    padding: 0;
    counter-reset: condition-counter;
}

.condition-item {
    counter-increment: condition-counter;
    margin: 25px 0;
    position: relative;
}

.condition-item::before {
    content: counter(condition-counter);
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #46bc68 0%, #28a745 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(70, 188, 104, 0.3);
}

.condition-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #46bc68;
    margin-left: 20px;
}

.condition-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.access-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.access-list li {
    background: #ffffff;
    margin: 8px 0;
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #17a2b8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
}

.access-list li:hover {
    background: #e3f2fd;
    transform: translateX(3px);
}

.applicant-requirements {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.applicant-requirements li {
    background: #ffffff;
    margin: 8px 0;
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
}

.applicant-requirements li:hover {
    background: #fff8e1;
    transform: translateX(3px);
}

/* Certificate Issuance Styles */
.certificate-issuance {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.issuance-list {
    list-style: none;
    padding: 0;
    counter-reset: issuance-counter;
}

.issuance-item {
    counter-increment: issuance-counter;
    margin: 25px 0;
    position: relative;
}

.issuance-item::before {
    content: counter(issuance-counter);
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.issuance-content {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    margin-left: 20px;
}

.issuance-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.issuance-requirements {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.issuance-requirements li {
    background: #ffffff;
    margin: 8px 0;
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #28a745;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
}

.issuance-requirements li:hover {
    background: #e8f5e8;
    transform: translateX(3px);
}

/* Price List Section Styles */
.price-list-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.price-list-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 15px 0 0 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price-intro {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #46bc68;
}

.price-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.price-categories {
    margin: 30px 0;
}

.price-category {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #46bc68;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #007bff;
}

.price-table {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 0.5fr 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #46bc68 0%, #28a745 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.header-cell {
    padding: 15px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cell:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 0.5fr 2fr 1fr 1fr 1fr;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background: #f8f9fa;
}

.table-row:nth-child(even) {
    background: #f8f9fa;
}

.table-row:nth-child(even):hover {
    background: #e9ecef;
}

.cell {
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #333;
    border-right: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cell:last-child {
    border-right: none;
}

.cell:nth-child(2) {
    text-align: left;
    justify-content: flex-start;
}

.price {
    font-weight: 600;
    color: #46bc68;
    font-size: 16px;
}

/* Price Notes Styles */
.price-notes {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.notes-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #ffc107;
    position: relative;
}

.notes-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffc107;
}

.notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notes-list li {
    background: #fff8e1;
    margin: 8px 0;
    padding: 12px 18px;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
}

.notes-list li:hover {
    background: #fff3cd;
    transform: translateX(3px);
}

/* Contact Info Styles */
.contact-info {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.contact-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 25px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #007bff;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #007bff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details strong {
    color: #2c3e50;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-details span {
    color: #555;
    font-size: 16px;
}

@media screen and (min-width:320px) and (max-width:425px) {
    .form1{
        display: block;
        width: 100%;
    }
    
    .certification-intro {
        padding: 20px;
        margin: 15px 0;
    }
    
    .certification-types li,
    .regulatory-documents li {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .company-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .condition-item::before,
    .issuance-item::before {
        left: -35px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .condition-content,
    .issuance-content {
        margin-left: 15px;
        padding: 20px;
    }
    
    .price-list-title {
        font-size: 1.4rem;
    }
    
    .price-category {
        padding: 20px;
        margin: 20px 0;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .header-cell,
    .cell {
        padding: 10px;
        font-size: 12px;
        text-align: center;
    }
    
    .cell:nth-child(2) {
        text-align: center;
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-item {
        padding: 15px;
    }
}    
@media screen and (min-width:426px) and (max-width:20000000px) {
    .form1{
        
        width: 200px;
    }
}    
 

 
/* Agreement Page Styles */
.agreement-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.document-header {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #46bc68;
}

.logo-section {
    text-align: center;
    padding: 20px;
}

.company-logo {
    background: linear-gradient(135deg, #46bc68 0%, #28a745 100%);
    border-radius: 15px;
    padding: 20px;
    display: inline-block;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.document-info {
    padding: 20px;
}

.document-code {
    text-align: center;
    margin-bottom: 30px;
}

.document-code p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.document-code h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.document-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.detail-item {
    text-align: center;
    padding: 10px;
}

.detail-label {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.detail-value {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    font-size: 14px;
}

.agreement-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.agreement-intro {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid #2196f3;
}

.agreement-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
}

.agreement-section-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

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

.section-number {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #46bc68;
    position: relative;
}

.section-number::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #007bff;
}

.obligations-subsection {
    margin-bottom: 30px;
}

.subsection-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #46bc68;
}

.obligations-list {
    margin-left: 20px;
}

.obligation-item {
    display: flex;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #46bc68;
    transition: all 0.3s ease;
}

.obligation-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(70, 188, 104, 0.2);
}

.obligation-number {
    background: #46bc68;
    color: white;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 15px;
    min-width: 60px;
    text-align: center;
    font-size: 12px;
    align-self: flex-start;
}

.obligation-item p {
    margin: 0;
    line-height: 1.6;
    color: #2c3e50;
    flex: 1;
}

.changes-list {
    margin: 10px 0 0 20px;
    padding-left: 20px;
}

.changes-list li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}

.nested-list {
    margin-left: 40px;
    margin-top: 15px;
}

.nested-list .obligation-item {
    background: #f1f3f4;
    border-left-color: #007bff;
}

.nested-list .obligation-number {
    background: #007bff;
}

.signatures-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #46bc68;
}

.signature-block {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.signature-block h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #46bc68;
}

.signature-line {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
}

.signature-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 15px;
    min-width: 150px;
}

.signature-underline {
    flex: 1;
    border-bottom: 2px solid #666;
    padding-bottom: 5px;
    color: #666;
    font-style: italic;
}

/* Enhanced Styles for Complex Agreement Items */
.complex-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-left: 4px solid #46bc68 !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 15px rgba(70, 188, 104, 0.15) !important;
    transition: all 0.3s ease !important;
}

.complex-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%) !important;
    transform: translateX(8px) !important;
    box-shadow: 0 6px 20px rgba(70, 188, 104, 0.25) !important;
}

.complex-item .obligation-number {
    background: linear-gradient(135deg, #46bc68 0%, #28a745 100%) !important;
    font-size: 14px !important;
    padding: 8px 12px !important;
    min-width: 70px !important;
    box-shadow: 0 2px 8px rgba(70, 188, 104, 0.3) !important;
}

.obligation-content {
    flex: 1;
    margin-left: 15px;
}

.obligation-main-text {
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
    font-size: 15px !important;
}

.sub-items-container {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e9ecef;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sub-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    border-left: 3px solid #007bff;
    transition: all 0.3s ease;
}

.sub-item:last-child {
    margin-bottom: 0;
}

.sub-item:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.15);
}

.sub-item-icon {
    background: #007bff;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

/* Special styling for emoji icons */
.sub-item-icon:contains("📰"),
.sub-item-icon:contains("📋"),
.sub-item-icon:contains("📢"),
.sub-item-icon:contains("⚠️"),
.sub-item-icon:contains("🚫"),
.sub-item-icon:contains("⏸️"),
.sub-item-icon:contains("🔧"),
.sub-item-icon:contains("📄"),
.sub-item-icon:contains("🏷️"),
.sub-item-icon:contains("📝") {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    font-size: 12px;
    width: 28px;
    height: 28px;
}

.sub-item-text {
    color: #495057;
    line-height: 1.5;
    font-size: 14px;
    flex: 1;
}

.obligation-note {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 15px;
    color: #856404;
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
    position: relative;
}

.obligation-note::before {
    content: "ℹ️";
    margin-right: 8px;
    font-style: normal;
}

/* Responsive Design for Agreement Page */
@media screen and (max-width: 768px) {
    .document-header {
        padding: 20px;
    }
    
    .document-code h1 {
        font-size: 1.4rem;
    }
    
    .agreement-content {
        padding: 20px;
    }
    
    .obligation-item {
        flex-direction: column;
    }
    
    .obligation-number {
        margin-bottom: 10px;
        margin-right: 0;
        align-self: flex-start;
    }
    
    .signature-line {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .signature-label {
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    .nested-list {
        margin-left: 20px;
    }
}

@media screen and (max-width: 576px) {
    .document-header .row {
        flex-direction: column;
    }
    
    .logo-section {
        margin-bottom: 20px;
    }
    
    .section-number {
        font-size: 1.3rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
    }
    
    .obligations-list {
        margin-left: 10px;
    }
    
    .signature-block {
        padding: 20px;
        margin-bottom: 20px;
    }
}    
 

 