* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
    position: relative;
    overflow-x: hidden; /* Add this */
    max-width: 100vw; /* Add this */
    width: 100%; /* Add this */
}

/* Fix container overflow */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100vw; /* Add this */
    overflow-x: hidden; /* Add this */
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Fix all section containers */
.itee-section,
.support-section,
.services-section,
.helpdesk-detail-section,
.case-studies-section,
.fees-section,
.support-packages-section,
.implementation-section,
.faq-section,
.contact-section,
.content-section {
    max-width: 100vw; /* Add this to all sections */
    overflow-x: hidden; /* Add this to all sections */
    box-sizing: border-box; /* Add this to all sections */
}

.logo {
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 10%;
    z-index: 2;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.content-image {
    max-width: 900px;
    width: 100%;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Itee Section */
.itee-section {
    position: relative;
    padding-bottom: 2rem;
}

.itee-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.itee-logo {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.itee-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.chips-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    width: 100%;
}

.chip {
    background-color: #F5F5F5;
    color: #00A0E9;
    padding: 0.3rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 170px;
    text-align: center;
}

.chip:hover {
    background-color: #0288D1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Support Section */
.support-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.support-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
}

.support-heading .highlight {
    display: inline-block;
    position: relative;
    padding-bottom: 0.2rem;
}

.support-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #FFE44D;
}

.support-description {
    font-size: 1.125rem;
    font-weight: bold;
    color: #000;
    line-height: 2;
}

.support-description p {
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-card {
    background-color: #ffffff;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem 1rem;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.4;
}

.service-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.4;
}

/* IT Helpdesk Detail Section */
.helpdesk-detail-section {
    padding-left: 11rem;
    padding-right: 11rem;
    padding-top: 3rem;
}

.helpdesk-detail-container {
    max-width: 1400px;
    margin-bottom: 8rem;
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 2rem;
    align-items: start;
}

.helpdesk-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.helpdesk-header {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
}

.helpdesk-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.helpdesk-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.helpdesk-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.helpdesk-title-area {
    width: 100%;
    text-align: left;
}

.helpdesk-description {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.8;
}

.helpdesk-illustration {
    display: flex;
    justify-content: center;
    max-width: 400px;
}

.helpdesk-illustration-lock {
    display: flex;
    justify-content: center;
    max-width: 220px;
}

.helpdesk-illustration-repeat {
    display: flex;
    justify-content: center;
    max-width: 310px;
}

.helpdesk-illustration-people {
    display: flex;
    justify-content: center;
    max-width: 260px;
}

.helpdesk-illustration-contact {
    display: flex;
    justify-content: center;
    max-width: 200px;
}

.helpdesk-illustration-people img,
.helpdesk-illustration-repeat img,
.helpdesk-illustration-lock img,
.helpdesk-illustration-contact img,
.helpdesk-illustration img {
    width: 100%;
    height: auto;
}

.helpdesk-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.problem-title-box {
    background-color: #b1e4f8;
    border-radius: 20px;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-title-box:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0, 160, 233, 0.2);
}

.problem-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00A0E9;
    line-height: 1.5;
    margin: 0;
}

.problem-description {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* Case Studies Section */
.case-studies-section {
    padding-left: 11rem;
    padding-right: 11rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #ffffff;
}

.case-studies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.title-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1rem;
}

.title-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 1px;
    background-color: #00A0E9;
}

.case-study-item {
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 3rem;
    align-items: start;
}

.case-study-image {
    width: 100%;
    aspect-ratio: 4/4;
    background-color: #D3D3D3;
    border-radius: 8px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.industry-label {
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1.5rem;
    border: 1px solid #00A0E9;
    color: #00A0E9;
    font-size: 1rem;
    width: 100%;
    font-weight: 600;
    border-radius: 4px;
}

.case-study-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
}

.case-study-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    color: #00A0E9;
    line-height: 1.6;
}

.case-study-description {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
    margin-top: 0.5rem;
}

.fees-section {
    padding-left: 11rem;
    padding-right: 11rem;
    padding-top: 3rem;
    padding-bottom: 5rem;
    background-color: #ffffff;
}

.fees-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3rem;
}

.pricing-overlay-text {
    position: absolute;
    top: 3%;
    left: 47%;
    transform: translateX(-50%);
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    text-align: left;
    line-height: 1.8;
    z-index: 10;
    width: 100%;
    padding: 0 2rem;
}

.pricing-image {
    width: 100%;
    display: block;
}

/* Support Packages Section */
.support-packages-section {
    padding-bottom: 5rem;
    padding-left: 8.8rem;
    padding-right: 8.8rem;
    background-color: #ffffff;
}

.support-packages-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.package-card {
    border-radius: 20px;
    padding: 1.3rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-pink {
    background: linear-gradient(135deg, #FFE5F0 0%, #FFD4E8 100%);
}

.package-green {
    background: linear-gradient(135deg, #E8F8E8 0%, #D4F0D4 100%);
}

.package-yellow {
    background: linear-gradient(135deg, #FFF8E5 0%, #FFF0D4 100%);
}

.package-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    margin-left: 2rem; 
}

.package-header-icon {
    position: absolute;
    right: 20px;
    top: 25%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-header-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-plus-icon {
    position: absolute;
    top: -5px;
    left: -8px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    z-index: 1;
}

.package-pink .package-plus-icon {
    color: #E91E8C;
}

.package-green .package-plus-icon {
    color: #4CAF50;
}

.package-yellow .package-plus-icon {
    color: #FFA726;
}

.package-title {
    font-size: 1.5rem;
    margin-left: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.package-badge {
    display: inline-block;
    background-color: #ffffff;
    padding: 0.4rem 1.2rem;
    margin-left: 3.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    width: fit-content;
}

.package-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.package-items {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
    justify-content: center;
}

.package-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

.package-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.package-pink .package-bullet {
    background-color: #E91E8C;
}

.package-green .package-bullet {
    background-color: #4CAF50;
}

.package-yellow .package-bullet {
    background-color: #FFA726;
}

.package-text {
    flex-shrink: 0;
}

.package-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Implementation Flow Section */
.implementation-section {
    padding: 5rem 8.8rem;
    background-color: #ffffff;
}

.implementation-container {
    max-width: 1400px;
    margin: 0 auto;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #00A0E9;
    border-right: none;
    border-top: none;
    overflow: visible;
    position: relative;
}

.flow-step:last-child {
    border-right: 1px solid #00A0E9;
}

.flow-step:last-child::after {
    display: none;
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 45px);
    height: 1px;
    background-color: #00A0E9;
    z-index: 1;
}

.flow-step::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 45px;
    background-color: #00A0E9;
    z-index: 1;
}

.flow-arrow {
    background-color: #00A0E9;
    color: #ffffff;
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 45px) 0, 100% 45px, 100% 100%, 0 100%);
}

.flow-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
}

.flow-description {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.8;
    padding: 0.6rem;
    background-color: #ffffff;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 8.8rem;
    background-color: #ffffff;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-items {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    display: grid;
    grid-template-columns: 35fr 65fr;
    gap: 3rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid #E0E0E0;
    align-items: start;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.faq-answer {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.9;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 8.8rem;
    background-color: #ffffff;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    margin-top: 4rem;
}

.form-group {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding-top: 0.5rem;
    text-align: right;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00A0E9;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    padding: 0.75rem 1rem;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.submit-button {
    background-color: #00A0E9;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 4rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #0288D1;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.content-section {
    padding: 5rem 18rem;
    background-color: #ffffff;
}

.intro {
    padding: 2rem;
    border: 1px solid #D2D2D2;
    border-radius: 10px;
}

.intro h3 {
    font-size: 1.6rem;
    text-align: center;
}

.intro .p-section {
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    line-height: 1.8;
}

.list-item {
    margin-bottom: 8px;
    padding-left: 0;
}

.list-item-letter {
    margin-bottom: 8px;
    padding-left: 30px;
}

.list-item-roman {
    margin-bottom: 8px;
    padding-left: 60px;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    position: absolute;
    top: 2rem;
    right: 10%;
    z-index: 1000;
    background-color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    /* box-shadow: 0 4px 12px rgba(0, 160, 233, 0.3); */
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background-color: #0288D1;
    transform: scale(1.05);
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
body.sidebar-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100vw; /* Prevent overflow */
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box; /* Important for padding calculations */
}

.sidebar.active {
    right: 0;
}

.sidebar-close {
    position: fixed; /* Changed from absolute to fixed */
    top: 2rem;
    right: 2rem;
    background-color: transparent;
    border: none;
    font-size: 2.5rem;
    color: #00A0E9;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    border-radius: 8px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Show close button when sidebar is active */
.sidebar.active .sidebar-close {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar-close:hover {
    background-color: rgba(0, 160, 233, 0.1); /* Light blue hover */
    color: #0288D1;
    transform: rotate(90deg);
}

.sidebar-menu {
    list-style: none;
    padding: 8rem 2rem 3rem; /* Reduced padding to prevent overflow */
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.sidebar-menu li {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 90%; /* Limit width to prevent overflow */
    box-sizing: border-box;
}

.sidebar-link {
    display: block;
    padding: 1.5rem 1.5rem; /* Reduced padding */
    font-size: 1.3rem;
    font-weight: 600;
    color: #00A0E9;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: #f5f5f5;
    text-align: center;
    word-wrap: break-word;
    box-sizing: border-box;
}

.sidebar-link:hover {
    background-color: rgba(0, 160, 233, 0.1);
    color: #ffffff;
    transform: scale(1.02);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    position: absolute;
    top: 2rem;
    right: 10%;
    z-index: 1000; /* Lower than sidebar */
    background-color: transparent !important;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 160, 233, 0.3);
    transition: all 0.3s ease;
}

/* Hide hamburger when sidebar is active */
.hamburger-menu.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hamburger-menu:hover {
    background-color: #0288D1;
    transform: scale(1.05);
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hide sidebar elements on desktop */
@media (min-width: 769px) {
    .hamburger-menu,
    .sidebar,
    .sidebar-overlay {
        display: none !important;
    }
}

/* MOBILE - 768px */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        right: 5%;
        top: 1.5rem;
    }

    .case-studies-section {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .case-study-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .helpdesk-detail-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .chips-container {
        display: none;
    }
    
    .hamburger-menu span {
        width: 22px;
    }
    
    .sidebar-menu {
        padding: 7rem 1.5rem 3rem;
    }
    
    .sidebar-menu li {
        max-width: 95%;
    }
    
    .sidebar-link {
        font-size: 1.2rem;
        padding: 1.3rem 1rem;
    }

    .content-section {
        padding: 3rem 2.5rem; /* Much smaller padding */
    }

    .intro {
        padding: 1.5rem 1rem;
    }
    
    .sidebar-close {
        top: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 2.2rem;
    }

    .pricing-overlay-text {
        left: 50%; /* Change from 47% to 50% */
        transform: translateX(-50%);
        font-size: 1rem; /* Reduce font size */
        padding: 0 1rem; /* Reduce padding */
        width: calc(100% - 2rem); /* Ensure it doesn't overflow */
        max-width: 100%; /* Add this */
    }
}
/* SMALL MOBILE - 480px */
@media (max-width: 480px) {
    .hamburger-menu {
        width: 45px;
        height: 45px;
        top: 1rem;
        right: 5%;
    }

    .pricing-overlay-text {
        font-size: 0.85rem; 
        line-height: 1.6;
        top: 2%;
        padding: 0 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .hamburger-menu span {
        width: 20px;
        height: 2.5px;
    }
    
    .sidebar-menu {
        padding: 6rem 1rem 2rem;
    }
    
    .sidebar-menu li {
        max-width: 100%;
    }
    
    .sidebar-link {
        font-size: 1.1rem;
        padding: 1.2rem 1rem;
    }

    .content-section {
        padding: 2rem 2.5rem;
    }
    
    .intro {
        padding: 1rem 0.75rem;
    }
    
    .sidebar-close {
        width: 42px;
        height: 42px;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
}

/* ========================================
   CONSOLIDATED RESPONSIVE STYLES
   ======================================== */

/* TABLET - 1024px */
@media (max-width: 1024px) {
    /* Logo & Main Content */
    .logo {
        left: 5%;
        padding: 1.5rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .content-image {
        max-width: 700px;
    }
    
    /* Itee Section */
    .itee-section {
        padding: 3rem 1.5rem;
    }
    
    .itee-logo {
        max-width: 450px;
    }

    .title-heading::after {
        width: 330px;
    }

    .title-heading {
        font-size: 2rem;
    }
    
    .support-section {
        padding: 4rem 1.5rem;
    }
    
    .support-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .support-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .support-heading .highlight {
        font-size: 2.5rem;
    }
    
    .support-description {
        font-size: 1rem;
    }

    /* Services Section */
    .services-section {
        padding: 3rem 3.5rem;
    }
    
    .services-container {
        gap: 2rem;
    }
    
    .service-card {
        width: 160px;
        height: 160px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-subtitle {
        font-size: 0.9rem;
    }
    
    /* Helpdesk Detail */
    .helpdesk-detail-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .helpdesk-illustration {
        max-width: 300px;
    }
    
    /* Fees Section */
    .pricing-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }

    .pricing-wrapper::-webkit-scrollbar-thumb:hover {
        background: #0288D1;
    }

    .pricing-image {
        width: 1200px; /* Fixed desktop width */
        min-width: 1200px;
    }

    .fees-section {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    
    .pricing-overlay-text {
        font-size: 1.3rem;
        top: 2%;
    }
    
    /* Support Packages */
    .support-packages-section {
        padding: 4rem 5rem;
    }
    
    .support-packages-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Implementation Flow */
    .implementation-section {
        padding: 4rem 5rem;
    }
    
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-step:nth-child(2n) {
        border-right: 1px solid #00A0E9;
    }
    
    .flow-step:nth-child(2n)::after {
        display: none;
    }
    
    .flow-step:nth-child(n+3) {
        border-top: none;
    }
    
    .flow-step::before {
        width: calc(100% - 35px);
    }
    
    .flow-step::after {
        height: 35px;
    }
    
    .flow-arrow {
        clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 35px, 100% 100%, 0 100%);
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 4rem 5rem;
    }
    
    .faq-item {
        gap: 2rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 4rem 5rem;
    }
    
    .form-group {
        grid-template-columns: 180px 1fr;
        gap: 1.5rem;
    }
}

/* MOBILE - 768px */
@media (max-width: 768px) {
    /* Container */
    .container {
        min-height: auto;
    }
    
    /* Background & Logo */
    .container::before {
        background-position: center 5%;
    }
    
    .logo {
        left: 20%;
        transform: translateX(-50%);
        padding: 1rem;
        text-align: center;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Main Content */
    .main-content {
        padding: 6rem 1rem 2rem;
        align-items: flex-start;
    }
    
    .content-image {
        max-width: 100%;
    }
    
    /* Itee Section */
    .itee-section {
        padding: 2rem 1rem;
    }
    
    .itee-container {
        gap: 2rem;
    }
    
    .itee-logo {
        max-width: 300px;
    }
    
    .chips-container {
        gap: 0.75rem;
    }
    
    .chip {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .support-section {
        padding: 3rem 1rem;
    }
    
    .support-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .support-heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .support-heading .highlight {
        font-size: 2.5rem;
    }
    
    .support-description {
        font-size: 0.95rem;
    }

    /* Services Section */
    .services-section {
        padding: 3rem 3.5rem;
    }
    
    .services-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-card {
        border-radius: 16px; /* Square with rounded corners */
        width: 100%;
        height: auto;
        aspect-ratio: 1/1; /* Makes it square */
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }
    
    .service-title {
        font-size: 0.95rem;
    }
    
    .service-subtitle {
        font-size: 0.85rem;
    }
    
    /* Helpdesk Detail */
    .helpdesk-detail-section {
        padding: 3rem 2rem;
    }
    
    .helpdesk-header {
        flex-direction: row;
        align-items: center;
        gap: 1rem; /* Adjust gap if needed */
    }
    
    .helpdesk-icon {
        width: 60px;
        height: 60px;
    }
    
    .helpdesk-title {
        font-size: 1.5rem;
    }
    
    .helpdesk-description {
        font-size: 0.9rem;
    }
    
    .problem-title-box {
        padding: 1.25rem 1.5rem;
    }
    
    .problem-title {
        font-size: 1rem;
    }
    
    .problem-description {
        font-size: 0.875rem;
        padding-left: 1.5rem;
    }
    
    /* Fees Section */
    .fees-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .pricing-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-image {
        width: 1200px; /* Keep desktop width */
        min-width: 1200px;
    }
    
    .pricing-overlay-text {
        position: absolute;
        font-size: 1rem;
        font-size: 1.1rem;
        top: 2%;
    }
    
    /* Support Packages */
    .support-packages-section {
        padding: 3rem 2rem;
    }
    
    .package-card {
        padding: 1.3rem;
    }
    
    .package-title {
        font-size: 1.3rem;
    }
    
    .package-icon {
        width: 80px;
        height: 80px;
    }
    
    .package-plus-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        top: -2px;
        left: -10px;
    }
    
    .package-header-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Implementation Flow */
    .implementation-section {
        padding: 1rem 2.5rem;
    }
    
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        border-right: 1px solid #00A0E9;
        /* border-bottom: none; */
        margin-bottom: 3rem;
    }
    
    .flow-step::after {
        display: none;
    }
    
    .flow-step:last-child {
        border-bottom: 1px solid #00A0E9;
    }
    
    .flow-arrow {
        padding: 1.25rem 1rem;
        min-height: 70px;
        clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 35px, 100% 100%, 0 100%);
    }
    
    .flow-title {
        font-size: 0.95rem;
    }
    
    .flow-description {
        font-size: 0.8rem;
        padding: 1.25rem 1rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 3rem 2.5rem;
    }
    
    .faq-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 3rem 2.5rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .form-label {
        padding-top: 0;
        text-align: left;
    }
}

/* SMALL MOBILE - 480px */
@media (max-width: 480px) {
    /* Background & Logo */
    .container::before {
        background-size: auto 100%;
        background-position: center top;
    }
    
    .logo {
        padding: 0.75rem;
    }
    
    .logo img {
        height: 32px;
    }
    
    /* Main Content */
    .main-content {
        padding: 5rem 0.75rem 1.5rem;
    }
    
    /* Itee Section */
    .itee-section {
        padding: 1.5rem 0.75rem;
    }
    
    .chip {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .support-section {
        padding: 2.5rem 0.75rem;
    }
    
    .support-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
    
    .support-heading {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .support-heading .highlight {
        font-size: 2.5rem;
    }
    
    .support-description {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    /* Services Section */
    .services-section {
        padding: 2.5rem 3.5rem;
    }
    
    .services-container {
        gap: 1rem;
        max-width: 100%;
    }
    
    .service-card {
        border-radius: 12px;
        padding: 1.25rem 0.75rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .service-title {
        font-size: 0.85rem;
    }
    
    .service-subtitle {
        font-size: 0.75rem;
    }
    
    /* Helpdesk Detail */
    .helpdesk-detail-section {
        padding: 1rem 2rem;
    }

    .helpdesk-header {
        flex-direction: row; /* Keep in row */
        align-items: center;
        gap: 0.75rem;
    }
    
    .helpdesk-icon {
        width: 50px;
        height: 50px;
    }
    
    .helpdesk-title {
        font-size: 1.25rem;
    }
    
    .problem-title-box {
        padding: 1rem 1.25rem;
    }
    
    .problem-description {
        padding-left: 1.25rem;
    }
    
    /* Fees Section */
    .pricing-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-image {
        width: 1200px; /* Keep desktop width */
        min-width: 1200px;
    }
    
    .fees-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .pricing-overlay-text {
        font-size: 1.2rem;
        top: 1.5%;
    }
    
    /* Support Packages */
    .support-packages-section {
        padding: 2rem 2.5rem;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .package-title {
        font-size: 1.2rem;
    }
    
    .package-item {
        font-size: 0.85rem;
    }
    
    .package-content {
        margin-top: 1rem;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
        margin-left: auto;
    }
    
    .package-plus-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: -2px;
        left: -10px;
    }
    
    .package-header-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Implementation Flow */
    .implementation-section {
        padding: 0.5rem 2.5rem;
    }
    
    .flow-step::before {
        width: calc(100% - 30px);
    }
    
    .flow-step::after {
        height: 30px;
    }
    
    .flow-arrow {
        padding: 1rem 0.75rem;
        min-height: 60px;
        clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
    }
    
    .flow-description {
        padding: 1rem 0.75rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 1rem 2.5rem;
    }
    
    .faq-item {
        padding: 1.5rem 0;
    }
    
    .faq-question {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        font-size: 0.8rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 1rem 2.5rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 0.95rem;
        padding: 0.45rem 0.85rem;
    }
    
    .submit-button {
        padding: 0.85rem 3rem;
        font-size: 1rem;
    }
}