* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    padding: 20px;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 2.5rem;
}

.dashboard-section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.dashboard-section:last-child {
    border-bottom: none;
}

.section-title {
    margin-bottom: 15px;
    color: #3498db;
    font-size: 1.8rem;
}

.dashboard-description, .section-description {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.1rem;
}

.download-section {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.download-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.download-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-info {
    color: #6c757d;
    font-size: 0.9rem;
}

.image-gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}

.image-container {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 12px 15px;
    background-color: #f8f9fa;
    text-align: center;
    font-weight: 500;
    color: #495057;
}

.project-description {
    padding: 15px 0;
}

.project-description p {
    margin-bottom: 15px;
}

.project-description ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.project-description li {
    margin-bottom: 8px;
}

.footer {
    background-color: var(--secondary-color);
    padding: 30px 0;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .image-gallery {
        flex-direction: column;
    }
    
    .image-container {
        min-width: 100%;
        margin-bottom: 20px;
    }
}