/* Base styles */
.project-page {
    padding: 20px 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #292929;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    /*content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e74c3c;*/
}

.text-center {
    text-align: center;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Banner */
.project-banner {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.project-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.project-content .lead {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Goals list */
.goal-list {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.goal-item {
    background: #f8f9fa;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 4px solid #e74c3c;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: #e74c3c;
    color: #fff;
    transform: translateX(5px);
}

.goal-item strong {
    color: inherit;
}

/* Infographic */
.project-infographic {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 10px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.info-icon svg {
    width: 30px;
    height: 30px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #292929;
}

/* Advantages section */
.advantages-section {
    padding: 50px 0;
    background: #292929;
    margin: 30px 0;
    color: #fff;
}

.advantages-section .section-title {
    color: #fff;
}

.advantages-section .section-title:after {
/*    background: #fff;*/
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.advantage-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.highlight-card {
    flex: 1;
    min-width: 300px;
    background: #e74c3c;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    margin: 10px;
}

.highlight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.highlight-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-text {
    flex: 2;
    min-width: 300px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin: 10px;
    color: #fff;
}

/* Brands section */
.brands-section {
    padding: 50px 0;
    background: #f8f9fa;
    padding-bottom: 0px;
}

.brands-section .section-title {
    color: #292929;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.brand-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.brand-title {
    font-size: 20px;
    color: #e74c3c;
    margin-bottom: 10px;
}

.brands-summary {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
}

.summary-text {
    flex: 2;
    min-width: 300px;
    padding: 20px;
}

.summary-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.summary-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Partners section */
.partners-section {
    /*padding: 50px 0;*/
    background: #fff;
}

.partners-section .section-title {
    color: #292929;
}

/* Objects section */
.objects-section {
    padding: 50px 0;
    background: #292929;
}

.objects-section .section-title {
    color: #292929;
}

/* Reviews section */
.reviews-section {
    padding: 50px 0;
    background: #fff;
}

/* Contact section */
.contact-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.contact-card {
    background: #292929;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-card .section-title {
    color: #fff;
}

.contact-card .section-title:after {
    background: #fff;
}

.contact-phones {
    margin: 20px 0;
}

.phone-link {
    display: inline-block;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}


.partners__heading {
    color: #292929;
    font-size: 28px;
    text-align: center;
}

.content-carousel__heading {
    font-size: 28px;
}

.head-arrows h2 {
    font-size: 28px !important;
    font-weight: 700;
    color: #292929;
}

/* Responsive */
@media (max-width: 768px) {
    .project-infographic {
        flex-direction: column;
    }
    
    .info-card {
        margin: 10px 0;
    }
    
    .highlight-card, .highlight-text, .summary-text, .summary-image {
        min-width: 100%;
        margin: 10px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .phone-link {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .project-content {
        padding: 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .phone-link {
        font-size: 18px;
    }
}