

.navbar {
    background: linear-gradient(135deg, #1A2A3A 0%, #284767 100%);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #1B6480;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-brand {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.nav-link:hover {
    text-decoration: underline;
}

.section-title {
    font-size: 22px;
    margin-bottom: 12px;
    text-align: left;
    color: #1B6480;
    position: relative;
    font-weight: bold;
}

.section-title::after {
    content: '';
    display: none;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 0px;
    text-decoration: none;
    font-weight: normal;
    transition: none;
    border: 1px solid #284767;
    cursor: pointer;
    font-size: 15px;
    background: #7E93A0;
    color: white;
}

.btn-primary {
    background: #284767;
    color: white;
    border: 1px solid #1A2A3A;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #1A2A3A;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: #7E93A0;
    color: white;
    border: 1px solid #284767;
}

.btn-secondary:hover {
    background: #1B6480;
    color: white;
    transform: none;
}

.about {
    padding: 20px 0;
    background: #D9E3EB;
    font-size: 15px;
}

.about-content {
    display: block;
    gap: 0;
    align-items: start;
    margin-bottom: 15px;
    background: #E8ECEF;
    padding: 12px;
    border-left: 3px solid #284767;
    border-radius: 2px;
}

.about-text p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #0E1A24;
    line-height: 1.4;
}

.skills h3 {
    font-size: 20.2px;
    margin-bottom: 8px;
    color: #1B6480;
    font-weight: bold;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skill-tag {
    display: inline-block;
    background: #5f7c8f;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: normal;
    font-size: 13px;
    border: 0;
}

.cta-section {
    padding: 15px 0;
    text-align: left;
    background: #E8ECEF;
    padding: 12px;
    margin: 15px 0;
    border-left: 3px solid #284767;
}

.cta-text {
    font-size: 15px;
    color: #1B6480;
    margin-bottom: 10px;
}

.cta-text a {
    color: #1B6480;
    text-decoration: underline;
    font-weight: normal;
}

.cta-text a:hover {
    color: #1B6480;
    text-decoration: underline;
}

.footer a {
    color: white;
    text-decoration: none;
    display: inline;
    margin: 0 10px 0 0;
    padding: 0;
    font-size: inherit;
    font-weight: normal;
}

.footer a:hover {
    text-decoration: underline;
}

.footer p {
    margin: 0 10px 0 0;
    padding: 0;
    display: inline;
}

.footer p a {
    display: inline;
    margin: 0;
}

@media (max-width: 768px) {
    body {
        font-size: 12px;
    }

    .nav-links {
        gap: 10px;
        font-size: 13px;
    }

    .about-content {
        display: block;
    }

    .section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .nav-links {
        flex-direction: row;
        gap: 8px;
    }

    .nav-brand {
        font-size: 15px;
    }
}
