/* Main Styles */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.nav-container {
    background-color: #2c3e50;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-bar {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-bar a:hover {
    color: #3498db;
}

.container {
    max-width: 800px;
    margin: 70px auto 0;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.header {
    text-align: center;
    padding: 60px 0;
    background-color: #2c3e50;
    margin: -20px -20px 20px -20px;
    border-radius: 8px 8px 0 0;
    background-image: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
}

.header h1 {
    color: white;
    margin-bottom: 10px;
}

.header p {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-top: 5px;
}

.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 6px solid #3498db;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.section {
    margin: 40px 0;
}

.highlight {
    color: #3498db;
}

.about-me p {
    margin-bottom: 15px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

h2 {
    color: #34495e;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

h2 i {
    margin-right: 10px;
    color: #3498db;
}

ul {
    padding-left: 20px;
}

ul li {
    margin: 10px 0;
}

.services-list {
    list-style-type: none;
    padding: 0;
}

.services-list li {
    margin: 15px 0;
    padding-left: 25px;
    position: relative;
    transition: transform 0.2s;
}

.services-list li:hover {
    transform: translateX(5px);
}

.services-list li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sub-services-list {
    list-style-type: none;
    padding-left: 20px;
    margin-top: 10px;
}

.sub-services-list li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.sub-services-list li:before {
    content: "○";
    color: #3498db;
    font-weight: normal;
    position: absolute;
    left: 0;
}

.top-contact {
    text-align: center;
    margin: 30px 0;
}

.contact-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
    .container {
        margin: 60px auto 0;
        padding: 15px;
        border-radius: 0;
        box-shadow: none;
    }
    .profile-img {
        width: 150px;
        height: 150px;
    }
    .hamburger-menu {
        display: block;
        margin-right: 10px;
    }
    .nav-bar {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: #2c3e50;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: top 0.3s ease;
        padding: 60px 0 20px 0;
        margin: 0;
        height: auto;
        min-height: 200px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .nav-bar a {
        padding: 12px 0;
        width: 100%;
        text-align: center;
    }
    .nav-bar.active {
        top: 0;
    }
    .header {
        padding: 30px 15px;
        margin: -15px -15px 20px -15px;
    }
    .section {
        padding: 0 10px;
    }
    h1 {
        font-size: 2em;
        margin-top: 20px;
    }
    h2 {
        font-size: 1.5em;
    }
    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}