.tc-accordion-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.tc-title {
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 30px;
    margin-bottom: 30px;
    margin-top: 100px;
}

.tc-accordion {
    border-top: 1px solid #ccc;
}

.tc-item {
    border-bottom: 1px solid #ccc;
}

.tc-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 18px;
    font-family: Open Sans,Helvetica,Arial,sans-serif;;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.tc-icon {
    font-size: 24px;
    transition: transform 0.2s ease;
}

.tc-content {
    display: none;
    padding-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.tc-item.active .tc-content {
    display: block;
}

.tc-item.active .tc-icon {
    transform: rotate(45deg);
}









/* ----------------------------------
   FIX: Reset theme button styles
---------------------------------- */

.tc-header {
    all: unset; /* nukes theme button styles */
    box-sizing: border-box;
    width: 100%;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 0;

    font-family: Open Sans,Helvetica,Arial,sans-serif;;
    font-size: 16px;
    color: #111;
}

/* Accordion borders like "Current offers" */
.tc-accordion {
    border-top: 1px solid #cfcfcf;
    padding-bottom: 100px;
}

.tc-item {
    border-bottom: 1px solid #cfcfcf;
}

/* Plus icon */
.tc-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.2s ease;
}

/* Content */
.tc-content {
    display: none;
    padding: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.6;
    max-width: 900px;
}

/* Active state */
.tc-item.active .tc-content {
    display: block;
}

.tc-item.active .tc-icon {
    transform: rotate(45deg);
}

/* Optional hover (matches offers subtlety) */
.tc-header:hover {
	opacity: 1;
	background: white;
	color: black;
	box-shadow: none;
}

.tc-header:focus {
	opacity: 1;
	background: white;
	color: black;
	box-shadow: none;
}


/* Visit Us page specific styles */

.visit-us-header h1 {
    font-family: Open Sans,Helvetica,Arial,sans-serif;
    font-size: 30px;
}
.visit-us-intro {
    font-family: Open Sans,Helvetica,Arial,sans-serif;
}

.visit-us-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
}

.visit-us-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 30px;
}

.visit-us-map iframe {
    width: 100%;
    min-height: 400px;
}

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

/* Live Chat page specific styles */

.chat-now-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.chat-now-title {
    font-size: 30px;
    margin-bottom: 30px;
}

.chat-now-steps p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.chat-cookie-btn {
    padding: 12px 20px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
}

.chat-now-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

.chat-now-bubble {
    padding: 20px 24px;
    border-radius: 20px;
    border: 1px solid #ddd;
    max-width: 420px;
}

.chat-now-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.chat-now-hours h3 {
    margin-bottom: 10px;
}
