/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Block Styles */
.block {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Block */
.header-block {
    text-align: center;
    background-color: #0056b3;
    color: white;
    padding: 20px 0;
    border-radius: 8px;
    margin-bottom: 40px;
}

.header-block h1 {
    font-size: 36px;
}

.header-block .project-description {
    font-size: 18px;
    margin-top: 10px;
}

/* Section Styles */
h2 {
    color: #0056b3;
    font-size: 28px;
    margin-bottom: 10px;
}

section p, section ul {
    font-size: 18px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
}

ul li {
    margin-bottom: 10px;
}

/* Technologies Used Section */
.project-technologies {
    text-align: center;
}

.technologies-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.tech-box {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tech-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.tech-box h3 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 10px;
}

.tech-box p {
    font-size: 16px;
    color: #555;
}

/* File Links Section */
.project-files {
    text-align: center;
}

.file-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.file-item {
    text-align: center;
}

.file-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    font-weight: bold;
}

.file-link:hover {
    background-color: #003f7f;
}

/* Footer Block */
.footer-block {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-top: 40px;
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-block p {
    margin-top: 10px;
}

.footer-block a {
    color: #0056b3;
    text-decoration: none;
}

.footer-block a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .technologies-container {
        flex-direction: column;
        align-items: center;
    }

    .tech-box {
        margin-bottom: 20px;
        width: 100%;
    }

    .file-links {
        flex-direction: column;
        align-items: center;
    }

    .file-item {
        margin-bottom: 20px;
    }

    header h1 {
        font-size: 28px;
    }

    header .project-description {
        font-size: 16px;
    }

    section h2 {
        font-size: 24px;
    }

    section p, section ul, .file-link {
        font-size: 16px;
    }
}