* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff5f7;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: 
        linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(255, 143, 171, 0.35)),
        url('https://i.pinimg.com/1200x/f8/69/39/f869397fdcd300da1f17b4a5e7290b4d.jpg');
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    margin: 0 auto 15px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 16px;
    opacity: 0.9;
}

section {
    background: white;
    margin: 25px 0;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ff6b9d;
}

h2 {
    color: #ff6b9d;
    margin-bottom: 15px;
    font-size: 22px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.skill-category {
    background: #fff5f7;
    padding: 15px;
    border-radius: 10px;
}

.skill-category h3 {
    color: #ff6b9d;
    margin-bottom: 10px;
    font-size: 18px;
}

ul {
    list-style-type: none;
}

ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #ffe4ec;
    position: relative;
    padding-left: 20px;
}

ul li:before {
    content: "•";
    color: #ff6b9d;
    position: absolute;
    left: 0;
}

.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.contact-links a {
    background: #ff6b9d;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-links a:hover {
    background: #ff4d87;
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 20px;
    color: #888;
    font-size: 14px;
}

@media (max-width: 600px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-links a {
        width: 200px;
        text-align: center;
    }
}