/* Header and Navigation */
.header {
    background: #faf8f5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

	.header h1 {
		color: #07495f;
		text-align: left;
		font-size: 1.6rem;
    }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo a, .logo a img {
	vertical-align: middle;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 1001;
    background: #00a8a3;
    border-radius: 5px;
    padding: 7px;
    transition: all 0.3s;
}

    .hamburger:hover {
        background: #008580;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: all 0.3s;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

    .nav-item > a {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 14px;
    }

    .nav-item:hover > a {
        background: #00a8a3;
        color: white;
    }

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
    font-size: 13px;
}

    .dropdown a:hover {
        background: #f8f8f8;
        padding-right: 25px;
        color: #00a8a3;
    }

.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 5px 15px;
}

    .search-box input {
        border: none;
        background: none;
        outline: none;
        padding: 5px;
        font-family: inherit;
        width: 120px;
    }

.mobile-search {
    display: none; /* Hidden by default */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #106b7c 0%, #07495f 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

    .breadcrumb a {
        color: #ffa500;
        text-decoration: none;
    }

/* Content Section */
.content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

    .content ol, .content ul {
        padding-right: 20px;
        margin-bottom: 30px;
    }

        .content ol.ltr, .content ul.ltr {
            direction: ltr;
            padding-left: 20px;
        }

.section-title {
    color: #137281;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
    text-align: center;
}

.content-text {
    line-height: 2;
    text-align: justify;
    margin-bottom: 30px;
}

    .content-text.attention-positive {
        color: #469600;
        border: 2px solid #177a3e;
        padding: 10px;
        background-color: #fff;
    }

    .content-text.attention-negative {
        color: #d32f2f;
        border: 2px solid #b71c1c;
        padding: 10px;
        background-color: #fff;
    }

    .content-text a {
        text-decoration: none;
		color: #095166;
		border-bottom: 1px dashed #095166;
    }

        .content-text a:hover {
            border-bottom: 1px solid #06485f;
        }

.content-text, .content ol, .content ul {
    color: #333;
}

    .content ol li, .content ul li {
        line-height: 2;
        text-align: justify;
    }


@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
		width: 65%;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.3rem;
    }
}