

/* Start:/local/templates/silamarket/css/internal.css?1748840053842*/
nav {
    border-radius: 15px !important;
}

.inner-hero {
    background: linear-gradient(135deg, #203E5C 0%, #00092C 100%);
    color: white;
    padding: 40px 0;
    height: 290px;
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}


.inner-hero-content {
    text-align: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.inner-hero p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}
/* End */


/* Start:/local/templates/silamarket/css/about.css?17489728206510*/
.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
}

.inner-hero-content {
    text-align: left;
    max-width: 75%;
    margin-right: auto;
}

.about-section {
    background: white;
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #203E5C;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: left;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #D61A19;
    border-radius: 2px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    color: #303030;
    margin-bottom: 25px;
}

.team-section .about-text {
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: #EDEDED;
    border-radius: 10px;
    padding: 30px;
}

.feature-icon {
    font-size: 40px;
    color: #D61A19;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #303030;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: #606060;
}

.categories-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #F8F9FA;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.category-item:hover {
    background: #203E5C;
    color: white;
}

.category-item:hover .category-name {
    color: white;
}

.category-icon img {
    transition: unset !important;
}

.category-item:hover .category-icon {
    border-color: #f2f2f2;
}

.category-item:hover .category-icon img {
    filter: invert();
}

.category-name {
    font-weight: 600;
    color: #303030;
    transition: color 0.3s ease;
}

.benefits-list {
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #D61A19;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.benefit-content {
    flex-grow: 1;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #203E5C;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 15px;
    line-height: 1.6;
    color: #606060;
}

.team-section {
    background: #203E5C;
    color: white;
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 40px;
}

.team-section .section-title {
    color: white;
}

.team-section .section-title::after {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-position {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.team-social a:hover {
    opacity: 1;
}


.cta-section {
    background: #203E5C;
    color: white;
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    margin-bottom: 40px;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #D61A19;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #EDEDED;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.contact-icon {
    font-size: 40px;
    color: #D61A19;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #203E5C;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 16px;
    line-height: 1.6;
    color: #606060;
}

.contact-info a {
    color: #D61A19;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #203E5C;
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    .about-hero-content {
        width: 100%;
        padding: 0 30px;
    }
    
    .about-hero::before {
        display: none;
    }
    
    .features-grid,
    .team-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .categories-list {
        grid-template-columns: 1fr;
    }
}

.category-icon {
    margin-right: 15px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #606060;
}

.category-icon img {
    width: 48px;
    height: 48px;
}
/* End */
/* /local/templates/silamarket/css/internal.css?1748840053842 */
/* /local/templates/silamarket/css/about.css?17489728206510 */
