.main-container {
    margin: 100px auto 40px;
    width: 90%;
    max-width: 1200px;
}

/* Form Section Styles */
.form-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header i {
    font-size: 24px;
}

.section-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.section-content {
    padding: 30px;
}

/* Introduction Section */
.intro-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: #e8f5fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #3498db;
    font-size: 32px;
}

.intro-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.intro-text {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Instructions Box */
.instructions-box {
    background: #f8f9fa;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.instructions-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.instructions-list li {
    position: relative;
    padding: 12px 35px 12px 0;
    border-bottom: 1px dashed #e0e6ed;
    color: #666;
}

.instructions-list li:last-child {
    border-bottom: none;
}

.instructions-list li:before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: #e8f5fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 14px;
}

/* Search Box */
.search-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.search-input-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto 20px;
}

.search-input {
    width: 100%;
    height: 60px;
    padding: 0 60px 0 20px;
    border: 2px solid #e0e6ed;
    border-radius: 30px;
    font-size: 1.1rem;
    text-align: right;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    background: white;
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    font-size: 20px;
    pointer-events: none;
}

.search-button {
    display: block;
    /* width: 200px; */
    margin: 20px auto 0;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Results Section */
.search-results {
    margin-top: 30px;
}

.certificate-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid #e0e6ed;
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.certificate-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.certificate-title {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
}

.meta-icon {
    width: 35px;
    height: 35px;
    background: #e8f5fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.8rem;
    color: #666;
}

.meta-value {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-certificate {
    background: #3498db;
    color: white;
}

.btn-order {
    background: #2ecc71;
    color: white;
}

.company_icon a {
    align-content: space-around;

}