body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6fb;
    color: #222;
}
header {
    background: #2b6cb0;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
    width: 64px;
    height: 64px;
    margin-bottom: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}
.site-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0.5rem 0 0.2rem 0;
}
.site-subtitle {
    font-size: 1.1rem;
    color: #e3e8ee;
    margin-bottom: 0.5rem;
}
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}
@keyframes fadeIn {
    to { opacity: 1; }
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    background: #fff;
    margin: 2rem auto;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    padding: 2rem;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2b6cb0;
}
.hero p {
    font-size: 1.2rem;
    color: #444;
}
.contact {
    max-width: 700px;
    margin: 2rem auto 3rem auto;
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 400px;
    margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    font-size: 1rem;
}
.contact-form textarea {
    min-height: 100px;
}
.btn-primary {
    background: #2b6cb0;
    color: #fff;
    font-weight: bold;
    padding: 0.9rem 0;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    width: 100%;
}
.btn-primary:hover {
    background: #205493;
}
.cta {
    max-width: 700px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.06);
    text-align: center;
}
.btn-secondary {
    display: inline-block;
    background: #fff;
    color: #2b6cb0;
    font-weight: bold;
    padding: 0.9rem 2.2rem;
    margin: 0 1rem 1rem 0;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    transition: background 0.2s;
    border: none;
}
.btn-secondary:hover {
    background: #e3e8ee;
}
.btn-warning {
    display: inline-block;
    background: #f7c948;
    color: #2b6cb0;
    font-weight: bold;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    transition: background 0.2s;
    border: none;
}
.btn-warning:hover {
    background: #ffe066;
}
.resume-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 400px;
    margin: 0 auto;
}
.resume-upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #2b6cb0;
    background: #f4f6fb;
    padding: 2rem 1rem;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: border 0.2s;
}
.resume-upload-text {
    font-size: 1.1rem;
    color: #2b6cb0;
    margin-bottom: 0.7rem;
}
.resume-upload-accepted {
    font-size: 0.95rem;
    color: #888;
}
.resume-upload-box input[type="file"] {
    display: none;
}
.about {
    max-width: 700px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.06);
}
.about-text {
    color: #111;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.gallery {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.06);
    text-align: center;
}
.gallery h2 {
    color: #2b6cb0;
    text-align: center;
}
.gallery p {
    text-align: center;
}
.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}
.gallery-images img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}

       