/* General Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f4f4f4 0%, #e6e6e6 100%);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #6a0dad 0%, #ff1493 100%);
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    animation: fadeInDown 1s ease-out;
}

.header-title {
    margin: 0;
    font-size: 2.7em;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-subtitle {
    margin-top: 10px;
    font-size: 1.2em;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 25px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

/* Sections */
.section {
    margin-bottom: 35px;
    padding: 20px;
    background: #fafafa;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    color: #ff1493;
    margin-bottom: 15px;
    font-size: 1.7em;
    border-bottom: 3px solid #ff1493;
    padding-bottom: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.section h2:hover {
    color: #c21874;
    border-color: #c21874;
}

/* Photo Section */
.photo-section {
    text-align: center;
    margin-bottom: 25px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff1493;
    transition: all 0.4s ease;
}

.profile-photo:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 10px 20px rgba(255, 20, 147, 0.4);
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 12px;
    padding: 12px;
    background: white;
    border-left: 4px solid #ff1493;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* Links */
a {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Back Button */
.back-button {
    text-align: center;
    margin-top: 30px;
}

.btn {
    padding: 12px 26px;
    background: linear-gradient(135deg, #007bff 0%, #004aad 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 18px rgba(0, 123, 255, 0.4);
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll Animation (JS uses this) */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .header-title {
        font-size: 2.1em;
    }
