/* Reset/Base Styles */
.new-to-practice-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
}

/* Header Fix - Remove green background */
.new-to-practice-container header {
    background-color: transparent !important;
    color: inherit;
    padding: 0;
    margin-bottom: 1rem;
}

/* Content Area */
.new-to-practice-content {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

/* Titles - FIXED: Changed back to #62A60A */
.new-to-practice-container h1,
.new-to-practice-container h2,
.new-to-practice-container h3 {
    color: #62A60A; /* Changed back to original green */
    font-weight: 600;
}

.subpage-title {
    font-size: 1.9em;
    margin-bottom: 0.8rem;
    padding: 1rem 0;
    border-bottom: 2px solid #62A60A;
    display: flex;
    align-items: center;
}

.step-icon {
    margin-right: 12px;
    color: #62A60A;
}

/* Content Sections */
.content-section {
    margin-bottom: 30px;
    padding: 0;
    background: none !important;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    background: none !important;
}

/* Content highlight with side-by-side layout */
.content-highlight {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.highlight-text {
    flex: 1;
}

.highlight-image {
    flex: 1;
    text-align: center;
}

.highlight-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Lists */
.topics-list {
    list-style-type: none;
    padding-left: 0;
}

.topics-list li {
    margin-bottom: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #62A60A;
}

/* Links */
.external-link {
    color: #2c6b2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.external-link:hover {
    color: #62A60A;
    text-decoration: underline;
}

/* Buttons - FIXED: Changed back to black */
.cta-button {
    display: inline-block;
    background-color: black; /* Changed back to original black */
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #333; /* Dark gray on hover instead of green */
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

/* Resource Grid */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.resource-item {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
}

/* Principles Layout */
.principles-container {
    display: flex;
    margin: 20px 0;
    gap: 40px;
    align-items: center;
}

/* Footer Protection */
.new-to-practice-container ~ footer {
    background-color: transparent !important;
    padding: 20px 0 !important;
    margin-top: 0 !important;
}

/* Style for lists in the highlight section */
.highlight-text ul {
    list-style-type: none;
    padding-left: 0;
}

.highlight-text li {
    margin-bottom: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #2c6b2c;
    transition: transform 0.3s;
}

.highlight-text li:hover {
    transform: translateX(5px);
    background: #f0f7ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .new-to-practice-container {
        padding: 15px;
    }
    
    .new-to-practice-content {
        padding: 20px 15px;
    }
    
    .content-highlight {
        flex-direction: column;
        gap: 20px;
    }
    
    .subpage-title {
        font-size: 1.6em;
    }
	.on-page-search {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.search-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

#on-page-search-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#on-page-search-button {
  padding: 0.5rem 1rem;
  background: #0055a4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#on-page-search-button:hover {
  background: #003f7d;
}

.search-feedback {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}
}