.single-project {
    padding: 120px 0 80px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.single-project .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.project-header .project-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-color);
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.project-header .project-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: none;
    max-height: none;
}

.project-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 15px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.meta-item .label {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 5px;
}

.meta-item .value {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.project-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 50px;
}

.project-content p {
    margin-bottom: 1.5em;
}

.project-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 2em 0 1em;
}

.project-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1.5em 0 1em;
}

.project-footer {
    text-align: center;
    margin-top: 60px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.back-link:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 75, 135, 0.2);
}

@media (max-width: 768px) {
    .single-project {
        padding: 60px 0;
    }

    .project-title {
        font-size: 2.5rem;
    }

    .project-meta {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-header .project-icon {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .project-title {
        font-size: 2rem;
    }

    .meta-item .value {
        font-size: 1.1rem;
    }
} 