/* Main Container - Mobile View */
.indhold_SEO_docs {
    grid-column: 1/-1;
    grid-row: 6/16;
    display: grid;
    align-items: flex-start;
    grid-template-columns: auto 10px auto 10px auto 10px auto 20px auto;
    grid-template-rows: 20px auto 20px auto 20px auto 20px auto 50px;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: ui-sans-serif, system-ui, sans-serif;
}

/* Inner Container - Mobile View */
.hire_guide_container {
	grid-column: 1/-1;
	grid-row: 2; 
	width: 90%; 
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* Section Styling - Mobile View */
.hire_guide_container div[class^="remote_guide_section"] {
    padding: 15px;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
	margin: 0 auto; 
}

/* Title Section - Mobile View */
.remote_guide_title {
	grid-column: 1/-1;
	grid-row: 2; 
    text-align: center;
    margin-bottom: 15px;
}

.remote_guide_title h1 {
    font-size: 22px;
    color: #222;
    font-weight: bold;
}

.remote_guide_title p {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}


.remote_guide_section1
{
		grid-column: 1/-1; 
	grid-row: 4; 
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
	
}

.remote_guide_section2
{
		grid-column: 1/-1; 
	grid-row: 6; 
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
	
}

.remote_guide_section3
{
		grid-column: 1/-1; 
	grid-row: 8; 
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
	
}

.remote_guide_section4
{
		grid-column: 1/-1; 
	grid-row: 10; 
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
	
}

.remote_guide_section5
{
		grid-column: 1/-1; 
	grid-row: 12; 
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
	
}

.remote_guide_section6
{
		grid-column: 1/-1; 
	grid-row: 14; 
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
	
}

.remote_guide_section7
{
		grid-column: 1/-1; 
	grid-row: 16; 
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
	
}

.remote_guide_section8
{
		grid-column: 1/-1; 
	grid-row: 18; 
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
	
}


/* Typography Adjustments for Mobile */
.hire_guide_container h2 {
    font-size: 18px;
    color: #444;
    font-weight: 600;
    margin-bottom: 8px;
    border-bottom: 2px solid #ddd;
}

.hire_guide_container p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Lists - Mobile View */
.hire_guide_container ul,
.hire_guide_container ol {
    margin: 10px 0;
    padding-left: 15px;
}

.hire_guide_container ul li,
.hire_guide_container ol li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 600px) {
    .hire_guide_container {
        width: 90%;
        padding: 15px;
		margin: 0 auto; 
    }

    .hire_guide_container h1 {
        font-size: 20px;
    }

    .hire_guide_container h2 {
        font-size: 16px;
    }

    .hire_guide_container p,
    .hire_guide_container ul li,
    .hire_guide_container ol li {
        font-size: 13px;
    }
}




/* 10 Questions - Mobile View */
.ten_questions_container {
	grid-column: 1/-1;
	grid-row: 2; 
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Title Styling */
h1.ten_questions_title {
	grid-column: 1/-1;
	grid-row: 2; 
    font-size: 22px;
    color: #333;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Questions Section */
.ten_questions_section {
	grid-column: 1/-1;
	grid-row: 4; 
    font-family: Arial, sans-serif;
    color: #444;
    line-height: 1.5;
}

/* Ordered List Styling */
.ten_questions_section ol {
    counter-reset: question-counter;
    padding-left: 15px;
}

.ten_questions_section ol li {
    counter-increment: question-counter;
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-left: 4px solid #0073e6;
    border-radius: 4px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Strong Text (Question Titles) */
.ten_questions_section li strong {
    font-size: 16px;
    color: #222;
    display: block;
    margin-bottom: 5px;
}

/* Emphasized Text (Why this matters) */
.ten_questions_section li em {
    font-size: 13px;
    color: #666;
    display: block;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .ten_questions_container {
        width: 90%;
        padding: 10px;
		margin: 0 auto; 
    }

    h1.ten_questions_title {
        font-size: 20px;
    }

    .ten_questions_section ol li {
        padding: 8px;
        font-size: 14px;
    }

    .ten_questions_section li strong {
        font-size: 15px;
    }

    .ten_questions_section li em {
        font-size: 12px;
    }
}

/* Sample Contract - Mobile View */
.contract-container {
	grid-column: 1/-1;
	grid-row: 2; 
    width: 95%;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: "Arial", sans-serif;
    color: #333;
    margin: 0 auto;
}

/* Title Styling */
h1.sample_contract_title {
	grid-column: 1/-1;
	grid-row: 2; 
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

h2.between_title {
	grid-column: 1/-1;
	grid-row: 4; 
    font-size: 18px;
    margin-bottom: 8px;
    text-align: center;
}

h3 {
    font-size: 16px;
    margin-top: 15px;
    color: #444;
}

/* Paragraphs */
p {
    font-size: 13px;
    line-height: 1.5;
}

/* Note Styling */
.note {
    font-size: 13px;
    font-style: italic;
    color: #d9534f;
    text-align: center;
    margin-bottom: 15px;
}

/* Lists */
ul {
    padding-left: 15px;
}

ul li {
    font-size: 13px;
    margin-bottom: 8px;
}

/* Highlighted Text */
.highlight {
    font-weight: bold;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 600px) {
    .contract-container {
        width: 90%;
        padding: 15px;
		margin: 0 auto; 
    }
    
    h1.sample_contract_title {
        font-size: 20px;
    }

    h2.between_title {
        font-size: 16px;
    }
    
    h3 {
        font-size: 14px;
    }
    
    p, ul li {
        font-size: 12px;
    }
}



/* Culture Tips - Mobile View */
.culture_tips_container {
	grid-column: 1/-1;
	grid-row: 2; 
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    color: #333;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Title Styling */
h1.tips_title {
	grid-column: 1/-1;
	grid-row: 2; 
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

h2.tips_manchet {
	grid-column: 1/-1;
	grid-row: 4; 
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
}

/* Sections Styling */
[class^="tips_section"] {
    padding: 15px;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

/* Text Adjustments */
h3 {
    font-size: 16px;
    margin-top: 15px;
    color: #444;
}

p {
    font-size: 14px;
    line-height: 1.5;
}

/* Lists */
ul {
    padding-left: 15px;
}

ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Highlighted Text */
.highlight {
    font-weight: bold;
    color: #007bff;
}

/* Blockquote */
blockquote {
    background: #f1f1f1;
    padding: 10px;
    border-left: 4px solid #007bff;
    margin: 10px 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 600px) {
    .culture_tips_container {
        width: 90%;
        padding: 15px;
		margin: 0 auto; 
    }

    h1.tips_title {
        font-size: 20px;
    }

    h2.tips_manchet {
        font-size: 16px;
    }

    h3 {
        font-size: 14px;
    }

    p, ul li {
        font-size: 13px;
    }
}


/* Quiz */

/* Quiz Container - Mobile View */
.quiz-container {
	grid-column: 1/-1;
	grid-row: 2; 
    width: 95%;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: ui-sans-serif, system-ui, sans-serif;
    color: #333;
    margin: 0 auto;
}

/* Title Styling */
h1, h2 {
    text-align: center;
    font-size: 20px;
}

/* Quiz Instructions */
.quiz-instructions {
    font-style: italic;
    text-align: center;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

/* Quiz Question Section */
.quiz-question {
    margin-top: 15px;
    padding: 12px;
    border-left: 4px solid #007bff;
    background: #f9f9f9;
    border-radius: 5px;
}

/* Question Title */
.quiz-question h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #444;
}

/* Lists */
ul {
    padding-left: 15px;
}

ul li {
    font-size: 13px;
    margin-bottom: 8px;
}

/* Scoring Section */
.scoring {
    background: #e9ecef;
    padding: 12px;
    border-radius: 5px;
}

.scoring li {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 6px;
}

/* Highlighted Text */
.highlight {
    color: #007bff;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 600px) {
    .quiz-container {
        width: 90%;
        padding: 15px;
		margin: 0 auto; 
    }

    h1, h2 {
        font-size: 18px;
    }

    .quiz-instructions {
        font-size: 13px;
    }

    .quiz-question {
        padding: 10px;
    }

    .quiz-question h3 {
        font-size: 14px;
    }

    ul li {
        font-size: 12px;
    }

    .scoring li {
        font-size: 12px;
		margin-left: 5px; 
    }
}




/* Template Container - Mobile View */
.template-container {
	grid-column: 1/-1;
	grid-row: 2; 
    width: 95%;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: ui-sans-serif, system-ui, sans-serif;
    color: #333;
    margin: 0 auto;
}

/* Title Styling */
h1, h2 {
    text-align: center;
    font-size: 20px;
}

/* Section Styling */
h3 {
    margin-top: 15px;
    color: #444;
    font-size: 16px;
}

/* Paragraphs */
p {
    font-size: 13px;
    line-height: 1.5;
}

/* Lists */
ul, ol {
    padding-left: 15px;
}

ul li, ol li {
    font-size: 13px;
    margin-bottom: 8px;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

th, td {
    border: 1px solid #ddd;
    padding: 6px;
    text-align: left;
    font-size: 12px;
}

th {
    background-color: #007bff;
    color: white;
}

/* Highlighted Text */
.highlight {
    font-weight: bold;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 600px) {
    .template-container {
        width: 90%;
        padding: 15px;
		margin: 0 auto; 
    }

    h1, h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 14px;
    }

    p, ul li, ol li {
        font-size: 12px;
    }

    th, td {
        font-size: 11px;
        padding: 5px;
    }
}

/* Container Adjustments for Mobile */
.key_phrases_container {
    grid-column: 1/-1;
    grid-row: 2;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    width: 95%; /* Use more screen width on mobile */
    max-width: 100%; /* Allow full width on small screens */
    margin: 0 auto;
    overflow-x: auto; /* Enables horizontal scrolling */
}

/* Make the table responsive */
.quick-reference-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px; /* Reduce font size for smaller screens */
    background-color: #ffffff;
    border: 1px solid #ddd;
    display: block; /* Allow horizontal scrolling */
    overflow-x: auto;
    white-space: nowrap; /* Prevent text wrapping in table cells */
}

/* Table cell padding & text alignment */
.quick-reference-table th, 
.quick-reference-table td {
    padding: 10px; /* Reduce padding for smaller screens */
    border: 1px solid #ddd;
    text-align: left;
}

/* Header styling */
.quick-reference-table thead {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* Alternating row colors */
.quick-reference-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect */
.quick-reference-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Make table scrollable in smaller screens */
@media screen and (max-width: 768px) {
    .quick-reference-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .quick-reference-table th, 
    .quick-reference-table td {
        padding: 8px; /* Further reduce padding for extra small screens */
        font-size: 12px; /* Adjust font size for readability */
    }
}


.cut-costs-container {
	grid-column: 1/-1; 
	grid-row: 2; 
	width: 90%; 
	margin: 0 auto; 
	
	
}