@font-face {
    font-family: 'Mercure';
    src: url('Mercure-Regular.woff2') format('woff2'),
         url('Mercure-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ABCOracle';
    src: url('ABCOracle-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Mercure', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

.marquee-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #000000;
    text-transform: uppercase;
}

custom-marquee:last-of-type {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: block;
    height: auto;
}

.container {
    display: flex;
    min-height: 100vh;
    padding: 5px;
    padding-top: 40px;
    gap: 0;
    position: relative;
}

.column {
    padding: 20px;
}

.column-left,
.column-right {
    width: 25%;

    position: fixed;
    z-index:0;
    top: 35px;
    bottom: 0px;
    overflow-y: auto;
}

.column-left {
    left: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.column-right {
    right: 5px;
}

.column-center {
    width: 50%;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
    margin-left: 25%;
    margin-right: 25%;
    overflow-y: auto;
    padding-top: 0;
    padding-bottom: 40px;
}

.column h1 {
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'ABCOracle', 'Mercure', sans-serif;
}

.column-left h1 {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.logo {
    width: 90%;
    height: auto;
}

.column-left .logo {
    width: 100%;
}

.tagline {
    font-size: 2em;
    line-height: 1.4;
    margin-bottom: 30px;
    font-style: normal;
    font-family: 'Mercure', 'Mercure', sans-serif;
}

.column h2 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.column h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    font-family: 'ABCOracle', 'Mercure', sans-serif;
}

.column h4 {
    font-size: 1em;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: normal;
}
.column h4::after {
    content:" –";
}
nav {
    margin-bottom: 30px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    margin-bottom: 8px;
}

nav a {
    font-family: 'ABCOracle';
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #666666;
}

.newsletter {
    margin-top: 30px;
}

.newsletter h3 {
    font-size: 1em;
    margin-bottom: 15px;
    font-family: 'ABCOracle', 'Mercure', sans-serif;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-input {
    padding: 8px 12px;
    border: 1px solid #000000;
    border-radius: 2px;
    font-family: 'Mercure', sans-serif;
    font-size: 0.9em;
    background: #ffffff;
    color: #000000;
}

.btn {
    padding: 8px 12px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Mercure', sans-serif;
    font-size: 0.9em;
    transition: background 0.3s;
}

.btn:hover {
    background: #333333;
}

.privacy-note {
    font-size: 0.8em;
    margin-top: 10px;
    color: #666666;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 4px;
}

.service {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.service:last-child {
    border-bottom: none;
}

.service h4 {
    margin-top: 0;
}

.oracle-font {
    font-family: 'ABCOracle', 'Mercure', sans-serif;
}

.intro-para {
    font-family: 'Mercure', sans-serif;
    font-size: 2.625rem;
    margin-bottom: 15px;
}

.body-para {
    font-family: 'ABCOracle', 'Mercure', sans-serif;
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.service-title {
    color: #000000;
    display: inline;
    margin-right: 0.5em;
}

/* Tablet styles (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 768px) {
    .container {
        flex-wrap: wrap;
    }

    .column-left,
    .column-right {
        width: 50%;
        font-size: 2rem; /* 32px on tablet */
        line-height: 1.3;
        border-bottom: 1px solid #000000;
        position: static;
        top: auto;
        bottom: auto;
    }

    .column-left {
        left: auto;
    }

    .column-right {
        right: auto;
    }

    .column-center {
        width: 100%;
        font-size: 2rem; /* 32px on tablet */
        line-height: 1.3;
        border-left: none;
        border-right: none;
        border-top: 1px solid #000000;
        margin-left: 0;
        margin-right: 0;
        padding-top: 20px;
    }
}

/* Phone styles (below 768px) */
@media screen and (max-width: 767px) {
    .container {
        flex-direction: column;
    }

    .column-left,
    .column-right,
    .column-center {
        width: 100%;
        border-left: none;
        border-right: none;
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }

    .column-left {
        font-size: 14px;
        border-bottom: 1px solid #000000;
    }

    .column-center {
        font-size: 1.5rem; /* 24px on phone */
        line-height: 1.3;
        border-bottom: 1px solid #000000;
        margin-left: 0;
        margin-right: 0;
        padding-top: 20px;
    }

    .column-right {
        font-size: 14px;
        border-bottom: none;
    }
}
