<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Modern Components - Specialized Components */

/* Enhanced Modern Button Styles */
.modern-btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
}

.modern-btn-success:hover {
    color: white;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    transform: translateY(-2px);
}

.modern-btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: #212529;
    border: none;
}

.modern-btn-warning:hover {
    color: #212529;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

.modern-btn-info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
    color: white;
    border: none;
}

.modern-btn-info:hover {
    color: white;
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
    transform: translateY(-2px);
}

.modern-btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    color: white;
    border: none;
}

.modern-btn-danger:hover {
    color: white;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
    transform: translateY(-2px);
}

.modern-btn-outline-primary {
    background: transparent;
    color: #ea580c;
    border: 2px solid #ea580c;
}

.modern-btn-outline-primary:hover {
    background: #ea580c;
    color: white;
    border-color: #ea580c;
}

.modern-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.modern-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Product Gallery Component */
.modern-gallery {
    position: relative;
}

.modern-gallery-main {
    position: relative;
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
}

.modern-gallery-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.modern-gallery-image:hover {
    transform: scale(1.05);
}

.modern-gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    overflow-x: auto;
    justify-content: center;
}

.modern-gallery-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.modern-gallery-thumbnail.active {
    border-color: #ea580c;
    transform: scale(1.1);
}

.modern-gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info Component */
.modern-product-info {
    padding: 2rem;
}

.modern-product-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modern-product-logo img {
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
}

/* Modern Solo Logo Component */
.modern-solo-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modern-solo-logo img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.modern-product-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modern-product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modern-spec-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ea580c;
}

.modern-spec-label {
    font-size: 1.6rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.modern-spec-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.4rem;
}

.modern-product-description {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
}

/* Certifications Component */
.modern-certifications {
    margin-bottom: 2rem;
}

.modern-certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.modern-certification-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.modern-certification-card img {
    max-height: 60px;
    max-width: 100px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

/* Product List Component */
.modern-product-list-item {
    display: flex;
    align-items: stretch;
    min-height: 200px;
}

.modern-product-image-section {
    flex: 0 0 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modern-product-image {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.modern-product-image:hover {
    transform: scale(1.05);
}

.modern-product-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modern-product-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modern-product-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-product-title a:hover {
    color: #ea580c;
    text-decoration: none;
}

.modern-product-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1.1rem;
}

.modern-product-meta {
    flex: 0 0 200px;
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modern-product-meta .modern-product-logo {
    margin-bottom: 1.5rem;
}

.modern-product-meta .modern-product-logo img {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.modern-product-meta .modern-certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.modern-product-meta .modern-certifications-grid img {
    max-height: 40px;
    max-width: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Documents List Component */
.modern-documents-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-document-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.modern-document-item:hover {
    background: #f8f9fa;
    border-color: #ea580c;
}

.modern-document-item i {
    color: #ea580c;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.modern-document-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
}

/* Confirmation Page Components */
.modern-next-steps {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.modern-next-steps h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modern-next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-next-steps-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.modern-next-steps-item:last-child {
    border-bottom: none;
}

.modern-next-steps-item i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

/* Contact Info Component */
.modern-contact-info {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.modern-contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modern-contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modern-contact-section h4 {
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.modern-contact-section address {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modern-contact-section a {
    color: #ea580c;
    text-decoration: none;
}

.modern-contact-section a:hover {
    text-decoration: underline;
}

/* Social Icons Component */
.modern-social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.modern-social-icons li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: transform 0.3s ease;
}

.modern-social-icons li a:hover {
    transform: scale(1.1);
}

.modern-social-icons .facebook {
    background: #3b5998;
}

.modern-social-icons .googleplus {
    background: #dd4b39;
}

.modern-social-icons .linkedin {
    background: #0077b5;
}

/* Action Buttons Component */
.modern-action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Form Row Component */
.modern-form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modern-form-col {
    flex: 1;
}

.modern-form-col-2 {
    flex: 2;
}

.modern-form-col-3 {
    flex: 3;
}

/* Contact Page Components */
.modern-locations-top {
    margin-top: 3rem;
}

.modern-location-card {
    margin-bottom: 2rem;
}

.modern-location-header {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-location-header h3 {
    margin: 0;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.modern-location-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.modern-location-content {
    padding: 0;
}

.modern-location-content iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

.modern-location-info {
    padding: 1.5rem;
    background: #f8f9fa;
}

.modern-location-info address {
    margin: 0;
    line-height: 1.6;
    color: #495057;
}

.modern-location-info a {
    color: #ea580c;
    text-decoration: none;
}

.modern-location-info a:hover {
    text-decoration: underline;
}

.modern-contact-form-section {
    padding: 2rem;
}

.modern-contact-form-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.modern-contact-form-section p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modern-warning-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #f39c12;
    color: #856404;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.modern-warning-notice i {
    color: #f39c12;
    margin-right: 0.5rem;
}

.modern-warning-notice a {
    color: #ea580c;
    font-weight: 600;
}

/* Quote Page Components */
.modern-quote-content {
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.modern-quote-image-section {
    flex: 0 0 350px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.modern-quote-logo {
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.modern-quote-product-image {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.modern-quote-form-section {
    flex: 1;
    padding: 2rem;
}

.modern-quote-form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.modern-quote-form-subtitle {
    color: #6c757d;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Solar Product Components */
.modern-solar-product-item {
    display: flex;
    align-items: stretch;
    min-height: 250px;
}

.modern-solar-image-section {
    flex: 0 0 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modern-solar-image {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.modern-solar-image:hover {
    transform: scale(1.05);
}

.modern-solar-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modern-solar-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modern-solar-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-solar-title a:hover {
    color: #ea580c;
    text-decoration: none;
}

.modern-solar-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 1rem;
}

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

.modern-solar-logo-section {
    flex: 0 0 200px;
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modern-solar-logo {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* No Products Message */
.modern-no-products {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.modern-no-products i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.modern-no-products h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Additional Product Page Styles */
.modern-product-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modern-certifications h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modern-tab-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Ensure proper spacing for product elements */
.modern-card .row {
    margin: 0;
}

.modern-card .row &gt; [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

/* Fix for gallery thumbnails spacing */
.modern-gallery-thumbnails {
    padding: 1rem;
    background: white;
}

/* Modern Alert Components */
.modern-alert {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.4rem;
    line-height: 1.5;
}

.modern-alert i {
    margin-right: 1rem;
    font-size: 1.25rem;
}

.modern-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.modern-alert-success i {
    color: #28a745;
}

.modern-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.modern-alert-error i {
    color: #dc3545;
}

.modern-alert-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.modern-alert-close:hover {
    opacity: 1;
}

/* Modern Form Help Text */
.modern-help-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.4;
}

.modern-help-text-large {
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #495057;
    line-height: 1.5;
}

/* Modern File Name Display */
.modern-file-name {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #495057;
    font-weight: 500;
}

/* Modern Datepicker Integration */
.modern-form-control.datepicker {
    background-image: url('data:image/svg+xml;charset=US-ASCII,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"&gt;&lt;path fill="%23666" d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM2 2a1 1 0 0 0-1 1v1h14V3a1 1 0 0 0-1-1H2zm13 3H1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V5z"/&gt;&lt;/svg&gt;');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

/* Enhanced Error Styling */
.error {
    display: block;
    color: #dc3545 !important;
    font-size: 1.4rem !important;
    margin-top: 0.5rem !important;
    font-weight: 500 !important;
}

/* Form Section Spacing */
.modern-form-section-spacing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.modern-form-submit-spacing {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

/* Responsive Form Spacing */
@media (max-width: 768px) {
    .modern-form-section-spacing {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .modern-form-submit-spacing {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* About Page Components */
.modern-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.modern-text-large {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1.5rem;
}

/* Modern Carousel Components */
.modern-carousel-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.modern-carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 1rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.modern-carousel-caption p {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.modern-carousel-control {
    background: rgba(234, 88, 12, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.modern-carousel-control:hover {
    background: rgba(234, 88, 12, 1);
    text-decoration: none;
}

.modern-carousel-control i {
    color: white;
    font-size: 1.5rem;
}

.modern-carousel-control.left {
    left: 1rem;
}

.modern-carousel-control.right {
    right: 1rem;
}

/* Careers Page Components */
.modern-subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.modern-benefits-list {
    margin: 2rem 0;
}

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

.modern-check-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1.4rem;
    color: #495057;
    border-bottom: 1px solid #f8f9fa;
}

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

.modern-check-list li i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.25rem;
}

/* Modern Accordion Components */
.modern-accordion {
    margin-top: 2rem;
}

.modern-accordion-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modern-accordion-header {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    padding: 0;
}

.modern-accordion-title {
    margin: 0;
}

.modern-accordion-title a {
    display: block;
    padding: 1.5rem 2rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-accordion-title a:hover {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
}

.modern-accordion-title a i {
    margin-right: 1rem;
    font-size: 1.1rem;
}

.modern-accordion-collapse {
    border-top: none;
}

.modern-accordion-body {
    padding: 2rem;
    background: #fff;
}

.modern-job-lead {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.modern-job-details {
    font-size: 1.41rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-style: italic;
}

.modern-job-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ea580c;
    padding-bottom: 0.5rem;
}

.modern-job-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.modern-job-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.4rem;
    color: #495057;
    line-height: 1.6;
}

.modern-job-list li:before {
    content: "â€¢";
    color: #ea580c;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.modern-job-apply {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ea580c;
    margin-top: 2rem;
}

.modern-job-apply p {
    margin: 0;
    color: #495057;
    font-size: 1.4rem;
}

/* Contact Info Components */
.modern-contact-info {
    margin: 2rem 0;
}

.modern-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ea580c;
}

.modern-contact-item i {
    color: #ea580c;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    min-width: 2rem;
}

.modern-contact-item div {
    flex: 1;
}

.modern-contact-item strong {
    color: #2c3e50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.modern-contact-item a {
    color: #ea580c;
    text-decoration: none;
}

.modern-contact-item a:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* Error Page Components */
.modern-error-page {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-error-content {
    max-width: 600px;
    width: 100%;
}

.modern-error-icon {
    font-size: 4rem;
    color: #f39c12;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.modern-error-number {
    font-size: 8rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(234, 88, 12, 0.3);
}

.modern-error-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.modern-error-message {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.modern-error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.modern-error-actions .modern-btn {
    min-width: 180px;
}

.modern-error-help {
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.modern-error-help p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.modern-error-help a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 500;
}

.modern-error-help a:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* Responsive Error Page */
@media (max-width: 768px) {
    .modern-error-page {
        padding: 2rem 1rem;
    }

    .modern-error-number {
        font-size: 5rem;
    }

    .modern-error-title {
        font-size: 2rem;
    }

    .modern-error-message {
        font-size: 1rem;
    }

    .modern-error-actions {
        flex-direction: column;
        align-items: center;
    }

    .modern-error-actions .modern-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Tablet Responsive Adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .modern-product-logo img {
        max-height: 50px;
        max-width: 160px;
    }

    .modern-product-meta .modern-product-logo img {
        max-height: 45px;
        max-width: 130px;
    }
}

/* Responsive Adjustments for Components */
@media (max-width: 768px) {
    .modern-product-specs {
        grid-template-columns: 1fr;
    }

    .modern-product-logo img {
        max-height: 45px;
        max-width: 140px;
    }

    .modern-product-list-item {
        flex-direction: column;
    }

    .modern-product-image-section {
        flex: none;
        min-height: 200px;
    }

    .modern-product-meta {
        flex: none;
        padding: 1.5rem;
    }

    .modern-product-meta .modern-product-logo img {
        max-height: 40px;
        max-width: 120px;
    }

    .modern-product-meta .modern-certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 0.5rem;
    }

    .modern-product-meta .modern-certifications-grid img {
        max-height: 30px;
        max-width: 60px;
    }

    .modern-contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modern-action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modern-btn {
        width: 100%;
        justify-content: center;
    }

    .modern-form-row {
        flex-direction: column;
        gap: 0;
    }

    .modern-gallery-thumbnails {
        justify-content: flex-start;
    }

    .modern-solar-product-item {
        flex-direction: column;
    }

    .modern-solar-image-section {
        flex: none;
        min-height: 200px;
    }

    .modern-solar-logo-section {
        flex: none;
        padding: 1.5rem;
    }

    .modern-solar-actions {
        justify-content: center;
    }

    .modern-quote-content {
        flex-direction: column;
    }

    .modern-quote-image-section {
        flex: none;
        min-height: 200px;
    }

    .modern-location-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .modern-location-badge {
        align-self: center;
    }

    .modern-contact-form-section {
        padding: 1.5rem;
    }
}
</pre></body></html>