/* ======================================================
   O'Conco Privacy Policy Stylesheet
   ------------------------------------------------------
   PURPOSE:
   Small, fine-print style privacy policy page using
   vanilla CSS with lightweight corporate branding.

   EDITING NOTES:
   - Main colors are located in :root
   - Font sizes are intentionally very small
   - Logo size can be adjusted in .logo
   ====================================================== */


/* ======================================================
   BRAND COLORS
   ------------------------------------------------------
   Easily change brand colors here
   ====================================================== */

:root {
    --brand-dark: #11108f;
    --brand-blue: #2d63d8;
    --brand-light: #45bfe2;
    
    /*
    --brand-dark: #000000;
    --brand-blue: #000000;
    --brand-light: #000000;    
    */
    

    --text-color: #1f1f1f;
    --border-color: #d9d9d9;

    --background-color: #ffffff;
}


/* ======================================================
   GLOBAL PAGE SETTINGS
   ====================================================== */

body {
    margin: 0;
    padding: 0;

    background-color: var(--background-color);

    color: var(--text-color);

    font-family: Arial, Helvetica, sans-serif;

    /* Intentionally small for fine-print feel */
    font-size: 11px;

    line-height: 1.45;
}

#oconco_privacy_policy {
    text-decoration: none;
    color: #FFFFFF;
}

#oconco_privacy_policy:hover {
    color: white;
}


/* ======================================================
   PAGE WIDTH / LAYOUT
   ====================================================== */

.page-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 12px 18px 40px 18px;

    box-sizing: border-box;
}


/* ======================================================
   HEADER / LOGO
   ====================================================== */

.top-header {
    display: flex;
    align-items: center;

    margin-bottom: 10px;
}

/* 
   Change width if logo needs resizing
*/
.logo {
    width: 15px !important;
    height: auto;
    display: block;

    /*height: auto;*/
}


/* ======================================================
   MAIN CONTENT CONTAINER
   ====================================================== */

.policy-container {
    width: 100%;
}


/* ======================================================
   MAIN TITLE
   ====================================================== */

h1 {
    margin: 0 0 6px 0;

    font-size: 18px;
    font-weight: 700;

    color: var(--brand-dark); 

    letter-spacing: 0.3px;
}


/* ======================================================
   SECTION HEADINGS
   ====================================================== */

h2 {
    margin-top: 22px;
    margin-bottom: 8px;

    font-size: 13px;

    color: var(--brand-dark);

    /*border-bottom: 1px solid var(--border-color);*/

    padding-bottom: 4px;
}


/* ======================================================
   SUB HEADINGS
   ====================================================== */

h3 {
    margin-top: 16px;
    margin-bottom: 6px;

    font-size: 11px;

    color: var(--brand-blue);

    font-weight: 700;
}


/* ======================================================
   PARAGRAPHS
   ====================================================== */

p {
    margin-top: 0;
    margin-bottom: 8px;
}


/* ======================================================
   LISTS
   ====================================================== */

ul {
    margin-top: 6px;
    margin-bottom: 10px;

    padding-left: 18px;
}

li {
    margin-bottom: 4px;
}


/* ======================================================
   CONTACT INFO BOX
   ====================================================== */

#contact-box {
    border-left: 3px solid var(--brand-blue);

    background-color: #f8fbff;

    padding: 10px 12px;

    margin: 10px 0 14px 0;
}

#companyaddress{
margin-left : 30px;
}


/* ======================================================
   META INFORMATION
   ====================================================== */

.policy-meta {
    margin-bottom: 10px;
}

.policy-meta p {
    margin-bottom: 2px;
}


/* ======================================================
   HORIZONTAL RULE
   ====================================================== */

hr {
    border: none;

    border-top: 1px solid var(--border-color);

    margin: 12px 0 18px 0;
}


/* ======================================================
   LINKS
   ====================================================== */

a {
    color: var(--brand-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* ======================================================
   SMALL SCREEN SUPPORT
   ------------------------------------------------------
   Keeps page readable on mobile devices
   ====================================================== */

@media screen and (max-width: 768px) {

    body {
        font-size: 10px;
    }

    .logo {
        width: 170px;
    }

    h1 {
        font-size: 16px;
    }

    h2 {
        font-size: 12px;
    }
}