@import url("https://fonts.googleapis.com/css2?family=Hind:wght@400;500;600;700&display=swap");

:root {
    --primary: #0076bc;
    --accent: #e96f33;
    --text: #000;
    --bg: #fff;
    --white: #fff;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.tax-country-location .wrap {
    max-width: 100%;
    padding: unset;
}

.tax-country-location h3,
.tax-country-location h4,
.tax-country-location h2,
.tax-country-location h1 {
	font-family: "Hind", sans-serif !important;
}

body {
	font-family: "Hind", sans-serif !important;
    color: var(--text);
    line-height: 1.6;
    background: #fff
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none
}

.container {
    width: min(1200px, 92%);
    margin: auto
}

.section {
    padding: 80px 0
}

.hero {
    position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    padding: 90px 0;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 38, 73, .78);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
	font-weight: bold;
}

.hero h2 {
    font-size: 2rem;
    margin: 10px 0 20px;
	color: #fff;
	font-weight: bold;
}

.hero p {
    max-width: 550px;
    margin-bottom: 30px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.btn {
    padding: 15px 28px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block
}

.btn-primary {
    background: var(--accent);
    color: #fff
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 50px;
	font-weight: bold;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.card {
    background: #fff;
    padding: 28px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px)
}

.card h3 {
    color: var(--primary);
    margin-bottom: 15px;
	font-size: 1.17em;
	font-weight: bold;
	text-transform: none;
}

.card p {
    margin: 8px 0
}

.card a {
    display: inline-block;
    margin-top: 14px;
    color: var(--primary);
    font-weight: bold
}

.card p a {
    color: var(--text);
	font-weight: 300;
	margin-top: unset;
}
.cta {
    background: var(--primary);
    padding: 60px 0;
    color: #fff;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta h2 {
    font-size: 1.5em;
    font-weight: bold;
    unicode-bidi: isolate;
	color: #fff;
}

.country-item-wrapper.proudly-canadian-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1rem;
	padding-top: 0px;
}

.country-item-wrapper.proudly-canadian-image img {
    display: block;
    width: 100%;
    max-width: 250px; /* Desktop max width */
    height: auto;
    margin: 0 auto;
}

@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .province-map {
        max-width: 420px;
        margin: auto
    }
}

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

    .hero {
        padding: 70px 0
    }

    .hero h1 {
        font-size: 3rem
    }

    .hero h2 {
        font-size: 1.5rem
    }

    .cta-box {
        flex-direction: column;
        text-align: center
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start
    }

    .btn {
        width: 100%;
        text-align: center
    }
	.country-item-wrapper.proudly-canadian-image img {
        max-width: 180px;
    }
}

@media(min-width:1400px) {
    .container {
        max-width: 1320px
    }
}
@media (max-width: 480px) {
    .country-item-wrapper.proudly-canadian-image img {
        max-width: 140px;
    }
}
