:root {
    --primary-dark: #171717;
    --dark-gradient: linear-gradient(135deg, #171717 0%, #000000 100%);
    --deep-slate: #171717;
    --text-gray: #171717;
    --border-color: #EBEBEB;
    --bg-light: #EBEBEB;
    --card-shadow: 0 10px 30px rgba(3, 3, 3, 0.04);
}

/* Page Layout */
.integration-template-wrapper {
    border: 1px solid #EBEBEB;
}

.integration-content {
    text-align: center;
    padding: 80px 0 100px;
    max-width: 900px;
    margin: 0 auto;
}

.integration-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    color: var(--deep-slate);
}

.integration-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    margin-top: 30px;
    opacity: 0.99;
    line-height: 1.2;
    color: #171717;
    letter-spacing: -0.6px;
}

.integration-content h3 {
    font-size: 28px;
    color: #171717;
    line-height: 1.2;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.integration-content p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 20px;
}

.integration-content a {
    color: #171717;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.integration-content a:hover {
    color: #000;
}

.integration-content ul {
    margin-bottom: 32px;
}

.integration-content li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #212121;
}

/* Feature Grid Section */
.itoc360-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 60px 0;
    text-align: left;
}

@media (max-width: 768px) {
    .itoc360-features-grid {
        grid-template-columns: 1fr;
    }
}

.itoc360-feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.feature-icon-box {
	width: 44px;
    height: 44px;
    background: linear-gradient(65deg, #3B95E3, #5A06A5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.feature-icon-box svg {
    width: 22px;
    height: 22px;
}

.itoc360-feature-card h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    margin: 0 0 12px 0 !important;
    letter-spacing: -0.4px !important;
    line-height: 1.3 !important;
    text-align: left !important;
}

.itoc360-feature-card p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #4b5563 !important; /* Muted text */
    margin: 0 !important;
    text-align: left !important;
    opacity: 0.9 !important;
}

/* FAQ SECTION ARCHITECTURE */
.itoc360-faq-section {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header>h2 {
    margin-bottom: 10px;
}

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

.itoc360-faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.itoc360-faq-question {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    color: var(--deep-slate);
    transition: all 0.2s ease;
    letter-spacing: -0.4px;
}

.itoc360-faq-question:hover {
    opacity: 0.80;
    padding-left: 5px;
}

.itoc360-faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--text-gray);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.itoc360-faq-item.active .itoc360-faq-question svg {
    transform: rotate(180deg);
}

.itoc360-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.itoc360-faq-question>span {
    text-align: left;
}

.itoc360-faq-item.active .itoc360-faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.itoc360-faq-answer p {
    margin: 0;
    color: var(--text-gray);
    font-size: 16px;
    text-align: left;
    line-height: 1.6;
}

/* Global Footer Alignment */
.itoc360-cta-footer {
    margin-top: 80px;
}