/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Section */
header {
    background: #333;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header p {
    font-size: 1.2rem;
    margin: 10px 0 0;
}

/* Projects Section */
.projects-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.project-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
}

.project-image {
    flex: 1;
}

.project-image img, .project-image video {
    width: 100%;
    height: auto;
    display: block;
}

.project-details {
    flex: 2;
    padding: 20px;
}

.project-details h2 {
    font-size: 1.8rem;
    margin: 0 0 10px;
    color: #333;
}

.project-details p {
    font-size: 1rem;
    color: #555;
    margin: 0 0 20px;
}

.project-links a {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.project-links a:hover {
    background: #555;
}

.project-links i {
    margin-right: 5px;
}

/* Footer Section */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ddd;
}

/* Section Headline */
.section-headline {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    position: relative;
}

.section-headline::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #333;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
    }

    .project-image, .project-details {
        flex: 1;
    }

    .project-details {
        padding: 20px;
    }
}