.projects-section {
    padding: 150px 0 80px 0;
    background: #f5f5f5;
}

.projects-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

.projects-title {
    font-family: Montserrat, Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0px;
    text-align: center;
    margin: 0 0 20px 0;
    color: #060607;
}

.projects-subtitle {
    font-family: Montserrat, Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.37;
    letter-spacing: 0px;
    text-align: center;
    margin: 0 0 60px 0;
    color: #060607;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.project-image-link {
    display: block;
    width: 100%;
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.project-content {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-name-link {
    text-decoration: underline;
    color: #060607;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.project-name-link:hover {
    color: rgba(6, 6, 7, 0.7);
    text-decoration: none;
}

.project-name {
    font-family: Montserrat, Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.project-price {
    font-family: "Open Sans", Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 20px 0;
    color: #060607;
    flex: 1;
}

.project-button {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #38a817;
    border-radius: 25px;
    color: #38a817;
    font-family: "Open Sans", Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.project-button:hover {
    background: #38a817;
    color: #fff;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 80px 0 60px 0;
    }
    
    .projects-title {
        font-size: 24px;
    }
    
    .projects-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-image {
        height: 220px;
    }
}
