
.container {
    width: 100%;
    max-width: 1440px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
}



h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.description {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.documents {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.document-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.document-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.document-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.document-meta {
    color: #7f8c8d;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 0px;
    flex-wrap: wrap;
}

.document-date, .document-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.document-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.download-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #284e80 0%, #193461 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 7px 20px rgba(37, 117, 252, 0.4);
}

.file-size {
    color: #7f8c8d;
    font-size: 0.95rem;
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}



.logo i {
    font-size: 3.5rem;
    color: #6a11cb;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.doc1 {
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    color: #34495e;
    line-height: 1.6;
    margin-bottom: 15px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}
#name {
    text-align: center;
}
th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.together {
    text-align: center;
    font-weight: bold;
    font-size: 18px;

}
.grpup {
    margin-bottom: 0;
    line-height: normal;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}
#one, #two {
    margin-bottom: 0;
    text-align: center;
}
th {
    background-color: #3498db;
    color: white;
    cursor: pointer;
}
th:hover {
    background-color: #2980b9;
}
tr:hover {
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    .container {
        padding: 25px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .document-meta {
        flex-direction: column;
        gap: 10px;
    }

    .document-actions {
        flex-direction: column;
        gap: 15px;
    }

    .download-btn {
        width: 100%;
        max-width: 250px;
    }
}
