/* Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #007acc, #005a9e);
    color: white;
    padding: 120px 0 60px;
    margin-top: 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    color: white;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: white;
}

/* Services Overview */
.services-overview {
    margin-bottom: 80px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007acc, #005a9e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-card li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007acc;
    font-weight: bold;
}

/* Additional Services */
.additional-services {
    margin-bottom: 80px;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.additional-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.additional-item:hover {
    transform: translateY(-3px);
}

.additional-icon {
    width: 60px;
    height: 60px;
    background: #007acc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.additional-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.additional-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #007acc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.5;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 30px;
    align-items: center;
}

.partner-logo {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    border: 2px dashed #ddd;
}

.partner-info {
    flex: 1;
}

.partner-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.partner-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: #e3f2fd;
    color: #007acc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #007acc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 5px;
}

.contact-card small {
    color: #999;
    font-size: 0.85rem;
}

/* Contact Form */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007acc;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Quick Contact */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease;
}

.quick-contact-item:hover {
    background: #e3f2fd;
}

.quick-icon {
    width: 50px;
    height: 50px;
    background: #007acc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.quick-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #333;
}

.quick-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Map */
.map-container {
    margin-top: 40px;
}

.map-placeholder {
    height: 400px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
}

.map-info {
    text-align: center;
    color: #666;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

/* Responsive Design */
/* Tablet */
@media (max-width: 1024px) {
    .page-header {
        padding: 110px 0 50px;
        margin-top: 75px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .intro-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        text-align: center;
    }
}

/* Mobile Medium */
@media (max-width: 600px) {
    .page-header {
        padding: 90px 0 30px;
        margin-top: 65px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .additional-item {
        padding: 20px;
    }
    
    .additional-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .partner-card {
        padding: 25px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .page-header {
        padding: 80px 0 25px;
        margin-top: 60px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 0.85rem;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .additional-item {
        padding: 15px;
    }
    
    .additional-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .additional-item h3 {
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .step h3 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .partner-card {
        padding: 20px;
    }
    
    .partner-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .quick-contact-item {
        padding: 15px;
    }
    
    .quick-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .quick-info h3 {
        font-size: 0.9rem;
    }
    
    .quick-info p {
        font-size: 0.8rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-info h3 {
        font-size: 1.3rem;
    }
    
    .map-info p {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .page-header h1 {
        font-size: 1.3rem;
    }
    
    .page-header p {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .additional-item {
        padding: 12px;
    }
    
    .additional-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .partner-card {
        padding: 15px;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .form-container {
        padding: 20px 10px;
    }
    
    .quick-contact-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .map-placeholder {
        height: 250px;
    }
}

/* Introduction Section */
.intro-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #007acc;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007acc;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Categories Section */
.categories-section {
    margin-bottom: 80px;
}

.categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

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

.category-card.featured {
    border: 2px solid #007acc;
}

.category-header {
    background: linear-gradient(135deg, #007acc, #005a9e);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.category-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.category-content {
    padding: 30px;
}

.category-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-list {
    list-style: none;
    margin-bottom: 25px;
}

.product-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #f8f9fa;
}

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

.product-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #007acc;
    font-weight: bold;
}

.partner-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #007acc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #007acc;
}

/* Featured Products */
.featured-products {
    margin-bottom: 80px;
    background: #f8f9fa;
    padding: 60px 0;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.products-showcase {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007acc;
    font-size: 3rem;
}

.product-info h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature {
    background: #e8f5e8;
    color: #27ae60;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Partners Catalog */
.partners-catalog {
    margin-bottom: 80px;
}

.partners-catalog h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.catalog-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.catalog-card:hover {
    border-color: #007acc;
    transform: translateY(-3px);
}

.catalog-header h3 {
    color: #007acc;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.catalog-type {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.catalog-card p {
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
}

.catalog-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.catalog-stats span {
    background: #f8f9fa;
    color: #555;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Order Process */
.order-process {
    margin-bottom: 80px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
}

.order-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007acc, #005a9e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #007acc, #005a9e);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #007acc;
}

/* Icons for page specific elements */
.icon-equipment::before { content: '🔧'; }
.icon-components::before { content: '⚙️'; }
.icon-panels::before { content: '📦'; }
.icon-control::before { content: '📊'; }
.icon-product::before { content: '❄️'; }

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .intro-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .intro-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .product-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-features {
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 40px 0;
    }
    
    .categories-section,
    .featured-products,
    .partners-catalog,
    .order-process {
        margin-bottom: 60px;
    }
    
    .featured-products,
    .order-process {
        padding: 40px 0;
    }
    
    .category-header {
        padding: 20px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .product-item {
        padding: 20px;
    }
    
    .catalog-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
