body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background: #f9f9f9;
    color: #222;
}
header {
    text-align: center;
    margin-bottom: 40px;
}
h1 {
    margin-bottom: 10px;
}
.intro {
    text-align: center;
    margin-bottom: 40px;
}
.projects {
    margin-bottom: 40px;
}
.project {
    background: #f4f8ff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(106, 141, 255, 0.05);
}
.contact {
    text-align: center;
    font-size: 1.1em;
    background: linear-gradient(120deg, #e0e7ff 0%, #fff 100%);
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(106, 141, 255, 0.04);
    padding: 32px 28px;
}
.large-header {
    background: linear-gradient(135deg, #6a8dff 0%, #aee2ff 100%);
    padding: 50px 0 40px 0;
    margin-bottom: 40px;
    border-radius: 0 0 48px 48px;
    box-shadow: 0 6px 24px rgba(106, 141, 255, 0.10);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
}
.header-image img {
    width: 180px;
    height: 260px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    background: #ccc;
    border: 6px solid #fff;
}
.header-text {
    text-align: left;
}
.header-text h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.header-text h2 {
    font-size: 1.5em;
    color: #e6eaf0;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

section {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 32px 28px;
    margin-bottom: 32px;
}

.projects {
    background: linear-gradient(120deg, #e0e7ff 0%, #f9f9f9 100%);
}
.project {
    background: #f4f8ff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(106, 141, 255, 0.05);
}

.about-me {
    background: linear-gradient(120deg, #ffe0e7 0%, #fff 100%);
}

.hobbies {
    background: linear-gradient(120deg, #e0ffe7 0%, #fff 100%);
}

.resume {
    background: linear-gradient(120deg, #fffbe0 0%, #fff 100%);
}

.contact {
    text-align: center;
    font-size: 1.1em;
    background: linear-gradient(120deg, #e0e7ff 0%, #fff 100%);
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(106, 141, 255, 0.04);
    padding: 32px 28px;
}

@media (max-width: 700px) {
    .header-content {
        flex-direction: column-reverse;
        gap: 24px;
    }
    .header-image img {
        width: 120px;
        height: 160px;
    }
    section {
        padding: 18px 8px;
    }
}
