﻿:root {
    --page-background: #ECECEC; /* CHANGE BACKGROUND COLOR HERE */
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    
    
}

/* Desktop scaling wrapper */
.page-shell {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    padding: 40px;
    min-height: 100vh;
    background: #DFE6E8;
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: flex-start; /* keeps it aligned to top */
}

.page-scale {
    width: 1100px;
    /*margin: 0 auto;*/
    transform-origin: top center;
    /*position:absolute;*/
}

.page-frame {
    width: 1100px;
    margin: 0 auto;
    background: transparent;
    border: 1px solid #ddd;
    overflow: hidden;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);*/
    box-sizing: border-box;
    border-radius: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
    box-sizing: border-box;
    padding: 40px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #3a8db0;
}

.nav {
    display: flex;
    align-items: center;
}

    .nav a {
        margin-left: 20px;
        text-decoration: none;
        color: #1d3b53;
        font-weight: 500;
    }

/* Hero */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 60px;
    padding: 40px;
    background: #4C99B7;
    color: #ffffff;
    border-radius: 12px;
    gap: 40px;
    box-sizing: border-box;
}

.hero-text {
    width: 500px;
    flex: 0 0 500px;
}

    .hero-text h1 {
        font-size: 40px;
        margin: 0 0 10px 0;
    }

    .hero-text p {
        margin: 8px 0;
        font-size: 18px;
        line-height: 1.5;
    }

.hero-image {
    width: 260px;
    flex: 0 0 260px;
}

    .hero-image img {
        width: 260px;
        height: auto;
        display: block;
    }

/* Info section */
.info-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px;
    box-sizing: border-box;
}

.info-left {
    width: 500px;
    flex: 0 0 500px;
}

    .info-left p {
        margin-top: 0;
        line-height: 1.5;
    }

    .info-left img {
        height: 60px;
        width: auto;
        margin-right: 20px;
        margin-top: 20px;
        vertical-align: middle;
    }

.info-right {
    width: 380px;
    flex: 0 0 380px;
}

.quote {
    background: #4c99b7;
    color: white;
    padding: 25px;
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.5;
    box-sizing: border-box;
}

    .quote p {
        margin: 0;
    }

/* Footer */
.footer {
    background: #173a5c;
    color: white;
    padding: 40px 60px;
    margin-top: 60px;
    box-sizing: border-box;
}

.footer-links {
    margin-top: 20px;
}

    .footer-links a {
        color: white;
        text-decoration: none;
        margin-right: 20px;
    }

.email {
    margin-bottom: 10px;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
}

/* Mobile version: turn scaling off and use normal responsive layout */
@media (max-width: 768px) {
    .page-scale {
        width: 100% !important;
        transform: none !important;
    }

    .page-frame {
        width: 100%;
        border: none;
        box-shadow: none;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .nav {
        flex-wrap: wrap;
        gap: 12px;
    }

        .nav a {
            margin-left: 0;
        }

    .hero {
        flex-direction: column;
        text-align: center;
        margin: 20px;
        padding: 24px;
        gap: 24px;
    }

    .hero-text,
    .hero-image,
    .info-left,
    .info-right {
        width: 100%;
        flex: 0 0 auto;
    }

        .hero-text h1 {
            font-size: 32px;
        }

        .hero-image img {
            width: 220px;
            margin: 0 auto;
        }

    .info-section {
        flex-direction: column;
        gap: 24px;
        margin: 20px;
    }

    .quote {
        font-size: 17px;
    }

    .footer {
        padding: 30px 20px;
        margin-top: 30px;
    }
}
