.projects-list {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.projects-header p {
    color: #9ca3af;
    font-size: 18px;
    line-height: 1.8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.projects-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.projects-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card {
    background: #111827;
    border-radius: 18px;
    border: 1px solid #2d3748;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
}

.project-image img {
    width: 100%;
    display: block;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.project-content p {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-content a {
    display: inline-block;
    text-decoration: none;
    color: #3b82f6;
    font-weight: 700;
}