.container-credit {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-container1 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.header-content {
    position: relative;
    z-index: 2;
}

.company-name {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.company-address {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 20px;
}

.form-title {
    font-size: 1.8em;
    font-weight: 600;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-container {
    padding: 40px 30px;
}

.section {
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 10px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: '';
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    margin-right: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group.full-width {
    flex: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 0.95em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    transform: translateY(-1px);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.terms-section {
    background: #fff3cd;
    border-left-color: #ffc107;
    border: 1px solid #ffeaa7;
}

.terms-text {
    font-size: 0.9em;
    line-height: 1.8;
    color: #856404;
    margin-bottom: 15px;
}

.signature-section {
    background: #d1ecf1;
    border-left-color: #17a2b8;
    border: 1px solid #bee5eb;
}

.signature-row {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.signature-group {
    flex: 1;
    min-width: 200px;
}

.signature-line {
    border-bottom: 2px solid #333;
    height: 40px;
    margin-bottom: 5px;
}

.submit-section {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.submit-btn {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.required {
    color: #e74c3c;
}
.signature-pad {
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    touch-action: none; /* prevent scrolling on touch devices while drawing */
    cursor: crosshair;
}
.signature-controls {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.signature-controls button {
    margin-right: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        border-radius: 10px;
    }

    .header {
        padding: 30px 20px;
    }

    .company-name {
        font-size: 2em;
    }

    .form-container {
        padding: 30px 20px;
    }

    .section {
        padding: 20px 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        min-width: auto;
    }
}

.trade-intro {
    margin-bottom: 20px;
    color: #666;
}

.reference-header {
    margin-bottom: 15px;
    color: #2c3e50;
}

.reference-header-spaced {
    margin: 25px 0 15px 0;
    color: #2c3e50;
}

.submit-title {
    margin-bottom: 15px;
}

.submit-note {
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-container {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  background: linear-gradient(135deg, #f5f8fa, #ffffff);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  color: #333;
}

.about-container h1 {
  font-size: 2.8em;
  color: #004a99;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.about-container p {
  margin: 20px 0;
  font-size: 1.1em;
}

.about-container .founding {
  font-style: italic;
  color: #005a9c;
  border-left: 4px solid #005a9c;
  padding-left: 12px;
}

.about-container .milestone {
  display: block;
  margin: 20px 0;
  font-weight: bold;
  color: #007acc;
}

.about-container .features {
  margin: 20px 0;
  padding-left: 20px;
}

.about-container .features li {
  margin: 8px 0;
}

.about-container .highlight {
  background-color: #007acc;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.about-container .footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.95em;
  color: #666;
}</content>
</xai:function_call name="edit">
<parameter name="filePath">/Users/industcomp/Developer/Web Sites/industrialcomponent/credit_application.html