* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    word-wrap: break-word;
    overflow-x: hidden;
}

.profile-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(0, 204, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 204, 255, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
    filter: brightness(1.05);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 30, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero picture {
    position: relative;
    z-index: 3;
}

h1 {
    font-size: 3rem;
    color: #00ccff;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
}

.tagline {
    font-size: 1.4rem;
    color: #00ccff;
    margin: 1rem 0;
}

.subtitle {
    font-size: 1.1rem;
    color: #aaa;
}

.bible-verse {
    font-size: 0.95rem;
    font-style: italic;
    margin: 1.5rem 0;
    opacity: 0.7;
    color: #888;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    margin: 12px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.primary {
    background: #0066cc;
    color: white;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.5);
    text-decoration: none;
}

.primary:visited {
    color: white;
}

.primary:hover {
    background: #0088ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.6);
}

section {
    padding: 5rem 2rem;
}

.summary {
    background: rgba(255, 255, 255, 0.02);
}

.summary p {
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.summary strong {
    color: #00ccff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ccff;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

.job {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #0066cc;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.job p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

.job h3 {
    color: #00ccff;
    margin-bottom: 0.5rem;
}

.job ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.job li {
    margin-bottom: 0.6rem;
}

footer {
    background: #0a0a16;
    color: #666;
    text-align: center;
    padding: 3rem 1.5rem;
    font-size: 0.9rem;
    word-wrap: break-word;
}

footer p {
    line-height: 1.8;
}

footer a {
    color: #00ccff;
}

footer .verse {
    margin-top: 1.5rem;
    font-style: italic;
    font-size: 0.85rem;
    color: #555;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .profile-img {
        width: 180px;
        height: 180px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
        margin: 0.8rem 0;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .bible-verse {
        font-size: 0.85rem;
        margin: 1rem 0;
    }

    .btn {
        padding: 12px 24px;
        margin: 8px 4px;
        font-size: 0.9rem;
        display: inline-block;
    }

    section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .job {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .job h3 {
        font-size: 1.1rem;
    }

    .job p {
        font-size: 0.9rem;
    }

    .job ul {
        padding-left: 1.2rem;
    }

    .job li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    footer {
        padding: 2rem 1rem;
        font-size: 0.85rem;
    }

    footer a {
        display: inline-block;
        margin: 0 2px;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem;
        min-height: 90vh;
    }

    .profile-img {
        width: 160px;
        height: 160px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
        line-height: 1.4;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        margin: 6px 2px;
        font-size: 0.85rem;
        width: calc(50% - 4px);
        max-width: 160px;
    }

    section {
        padding: 2.5rem 0.75rem;
    }

    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .job {
        padding: 1.2rem;
    }

    .job h3 {
        font-size: 1rem;
    }

    .job p,
    .job li {
        font-size: 0.85rem;
    }

    footer {
        padding: 1.5rem 0.75rem;
        font-size: 0.8rem;
    }

    footer p {
        line-height: 1.6;
    }
}