.page-content {
    padding: 60px 0;
    color: var(--white);
}

.page-content h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    align-items: stretch;
}

.contact-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-card h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #ff9800;
    display: table;
    margin: 0 auto 20px auto;
    padding-bottom: 8px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: var(--white);
}

.contact-card p,
.contact-card ul {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.phone-link {
    color: inherit;
    text-decoration: none;
}

.phone-link:hover {
    color: #ff9800;
    text-decoration: underline;
}

.secondary-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
    line-height: 1.4;
}

.time-list {
    list-style: none;
    padding: 0;
}

.time-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.time-list li:last-child {
    border-bottom: none;
}

.time-list .day {
    font-weight: 500;
}



.tally-card {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.tally-card h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #ff9800;
    display: table;
    margin: 0 auto 20px auto;
    padding-bottom: 8px;
}

.tally-card iframe {
    flex-grow: 1;
    border-radius: 8px;
}

.contact-footer {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--white);
    height: 100%;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {

    .contact-grid-three,
    .contact-grid-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .contact-grid-three,
    .contact-grid-two {
        grid-template-columns: 1fr;
    }

    .page-content h1 {
        font-size: 2.5rem;
    }
}