/* Base styles remain the same */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 2rem;
}

/* Updated header layout */
.header-content {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.name-section {
    text-align: center;
}

.name-section h1 {
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.social-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.social-links svg {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

/* Responsive adjustments remain the same */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
}

.welcome-graphic {
    width: 100%;
    height: 200px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Neural network animations */
.neural-network path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: flow 3s linear infinite;
}

.neural-network circle {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes flow {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        r: 6;
        fill-opacity: 0.6;
    }
    50% {
        r: 8;
        fill-opacity: 1;
    }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    
    .name-section {
        text-align: center;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
    }
}

/* Previous styles remain the same until welcome-graphic */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    text-align: center;
    padding: 2rem;
}

.welcome-graphic {
    width: 100%;
    height: 200px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.neural-network path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: flow 3s linear infinite;
}

.neural-network circle {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes flow {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        r: 6;
        fill-opacity: 0.6;
    }
    50% {
        r: 8;
        fill-opacity: 1;
    }
}

/* Profile section */
.profile-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Content grid */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.column {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Typography */
h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Lists */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2980b9;
}

/* Add section */
.add-section {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
}

/* Button styles */
button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}
