/* ==== Kyanite Blue - Product Page Styles (Collective IP) ==== */

/* ---- Font Definitions ---- */
@font-face {
    font-family: 'Saira Condensed';
    src: url('../collectiveip/Saira Condensed/SairaCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Saira Condensed';
    src: url('../collectiveip/Saira Condensed/SairaCondensed-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Saira Condensed';
    src: url('../collectiveip/Saira Condensed/SairaCondensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('../collectiveip/Calibri Complete/Calibri.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Calibri';
    src: url('../collectiveip/Calibri Complete/Calibribold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


/* ---- Base & Typography ---- */
.product-page {
    background-color: #fff;
    font-family: 'Calibri', sans-serif;
}

.product-page .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---- Hero Section ---- */
.product-hero {
    background-color: #3b4041;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#collective-ip-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-hero .container {
    position: relative;
    z-index: 2;
}

.hero-logo-svg {
    height: 360px;
    /* Control height directly */
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    /* Removed bottom margin to close gap */
}

/* ---- Content Section ---- */
.content-section {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column layout */
    gap: 2rem;
    max-width: 800px;
    /* Constrain width on larger screens */
    margin: 0 auto;
    /* Center the grid */
}

.service-tile {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-tile-title {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #3b4041;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #495057;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list i {
    color: #70309d;
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
    /* To align text */
    text-align: center;
}