@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-color: #214d71;
    --secondary-color: #163a57;
    --accent-color: #e3da8a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

/* Main Navigation */
nav.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 65px;
    width: auto;
}

.logo-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: inline-block;
    text-align: center;
    line-height: 0.9;
    min-width: 180px;
}

.logo-line-1 {
    display: inline-block;
    width: 100%;
    font-size: 1.55rem;
    text-align: left;
    line-height: 1;
    margin-bottom: -0.2em;
}

.logo-line-2 {
    display: inline-block;
    width: 100%;
    text-align: left;
    line-height: 1;
    margin-top: -0.2em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-menu a.active {
    background-color: rgba(33, 77, 113, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

/* Navigation Buttons */
.nav-button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.nav-button-filled {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(33, 77, 113, 0.4);
}

.nav-button-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 77, 113, 0.5);
    background: var(--secondary-color);
}

.nav-button-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(33, 77, 113, 0.2);
}

.nav-button-outline:hover {
    transform: translateY(-2px);
    background: rgba(33, 77, 113, 0.1);
    box-shadow: 0 4px 15px rgba(33, 77, 113, 0.3);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(135deg, rgba(33, 77, 113, 0.1) 0%, rgba(22, 58, 87, 0.8) 100%), url('images/stock1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.95;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-action-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 218, 138, 0.4);
}

.hero-action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 218, 138, 0.5);
}

.hero-subtext {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    opacity: 0.95;
    color: var(--white);
}

.hero-subtext .hero-action-button {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.hero-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.hero-link:hover {
    opacity: 0.8;
}

.hero-action-button-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 2px 10px rgba(227, 218, 138, 0.2);
}

.hero-action-button-outline:hover {
    background: rgba(227, 218, 138, 0.1);
    box-shadow: 0 4px 15px rgba(227, 218, 138, 0.3);
}

.hero-features {
    margin-top: 3rem;
}

.hero .feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.hero .feature-card h3 {
    color: var(--text-dark);
}

.hero .feature-card p {
    color: var(--text-light);
    opacity: 1;
}

/* Page Hero (for interior pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Page Hero */
.page-hero-enhanced {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(227, 218, 138, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-enhanced {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero-enhanced h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat {
    flex: 1;
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(227, 218, 138, 0.3);
}

.hero-stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

/* About Story Section */
.about-story {
    background: var(--white);
    padding: 6rem 2rem;
    position: relative;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-header .section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.story-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-paragraph {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.story-paragraph:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-color);
}

.story-paragraph h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.story-paragraph p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
}

.story-paragraph p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 218, 138, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 218, 138, 0.5);
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 77, 113, 0.3);
}

/* Action Buttons Section */
.action-buttons {
    background: var(--white);
    padding: 4rem 2rem;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    text-align: center;
    min-height: 200px;
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.action-button h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.action-button p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust & Excellence Section */
.trust-excellence {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 50%, var(--white) 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.trust-excellence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-header .section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.trust-header .section-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Trust Statistics */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 5rem;
}

.trust-stat-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(33, 77, 113, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 218, 138, 0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.trust-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(33, 77, 113, 0.35);
}

.trust-stat-card:hover::before {
    transform: rotate(45deg);
}

.trust-stat-icon {
    font-size: 4.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.trust-stat-card:hover .trust-stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-stat-content {
    flex: 1;
    color: var(--white);
}

.trust-stat-number {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(227, 218, 138, 0.3);
}

.trust-stat-label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    opacity: 0.98;
}

.trust-stat-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Trust Divider */
.trust-divider {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.4;
}

.divider-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Trust Compliance */
.trust-compliance {
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.compliance-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.compliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    transition: height 0.4s ease;
}

.compliance-card:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: 0 8px 30px rgba(33, 77, 113, 0.2);
    border-left-color: var(--accent-color);
}

.compliance-card:hover::before {
    height: 100%;
}

.compliance-icon-wrapper {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.compliance-logo-wrapper {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    margin-bottom: 1rem;
}

.compliance-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(33, 77, 113, 0.25);
    transition: all 0.4s ease;
}

.compliance-logo {
    width: auto;
    height: 90px;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.compliance-card:hover .compliance-icon {
    background: linear-gradient(135deg, var(--accent-color), #d4c97a);
    color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(227, 218, 138, 0.4);
}

.compliance-card:hover .compliance-logo {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15)) brightness(1.05);
}

.compliance-content {
    flex: 1;
    position: relative;
    z-index: 1;
    width: 100%;
}

.compliance-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.compliance-card:hover .compliance-content h3 {
    color: var(--primary-color);
}

.compliance-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Features/Values Section */
.features {
    background: var(--bg-light);
}

.values {
    background: var(--bg-light);
}

.features-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card,
.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon,
.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card:hover .feature-icon,
.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--accent-color), #d4c97a);
    color: var(--primary-color);
}

.feature-card h3,
.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p,
.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(135deg, rgba(33, 77, 113, 0.1) 0%, rgba(22, 58, 87, 0.8) 100%), url('images/stock2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 5rem 2rem;
    position: relative;
}

.about .container {
    max-width: 900px;
    text-align: center;
}

.about-content {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--primary-color);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.1rem;
    text-align: left;
}

/* About Promise Section */
.about-promise {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 6rem 2rem;
    position: relative;
}

.promise-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promise-header .section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promise-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.promise-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.promise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(33, 77, 113, 0.15);
    border-top-color: var(--accent-color);
}

.promise-card:hover::before {
    transform: scaleX(1);
}

.promise-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(33, 77, 113, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.promise-card:hover .promise-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-color), #d4c97a);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(227, 218, 138, 0.4);
}

.promise-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.promise-card:hover .promise-icon {
    transform: scale(1.1);
}

.promise-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promise-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.promise-card:hover h3 {
    color: var(--primary-color);
}

.promise-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* About Values Section */
.about-values {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 2rem;
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.value-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 600;
}

.value-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.about-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Careers Section */
.careers {
    background: var(--white);
    padding: 5rem 2rem;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.career-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.career-header {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.career-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 600;
}

.career-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.career-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.career-location {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.career-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.career-requirements {
    margin-bottom: 1.5rem;
}

.career-requirements h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.career-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-requirements li {
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.career-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.career-apply-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 77, 113, 0.3);
    margin-top: auto;
}

.career-apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 77, 113, 0.4);
    background: var(--secondary-color);
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateX(5px);
    border-left-color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section - default blue gradient */
section.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 2rem;
}

/* Override for contact page only (when form container exists) */
section.contact#contact:has(.contact-form-container) {
    background: var(--bg-light) !important;
    padding: 4rem 0;
    color: var(--text-dark);
}

/* Get in Touch Section (same styling as contact section) */
.get-in-touch {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 2rem;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-address {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-address h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
}

.contact-address address {
    font-style: normal;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.9;
    color: var(--white);
}

.contact-map {
    height: 100%;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    opacity: 0.9;
}

/* Enhanced Contact Section Styles */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header .section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-header .section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-tagline {
    font-size: 1.05rem;
    font-style: italic;
    opacity: 0.9;
}

.contact-layout-enhanced {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

/* Contact Info Panel */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-info-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-info-value {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 500;
    margin: 0;
    font-style: normal;
}

.contact-info-value address {
    font-style: normal;
    margin: 0;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--white);
    transform: translateX(4px);
    text-shadow: 0 2px 8px rgba(227, 218, 138, 0.4);
}

.email-item {
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.email-item:last-child {
    margin-bottom: 0;
}

.email-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-left: 0.25rem;
}

.contact-info-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 1.5rem 0;
}

.contact-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    opacity: 0.95;
}

.contact-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 218, 138, 0.4);
}

.contact-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(227, 218, 138, 0.5);
    background: #d4c97a;
}

/* Enhanced Map Section */
.contact-map-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.map-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.map-container {
    height: 450px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    background: var(--white);
}

.map-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

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

.map-footer {
    text-align: center;
    padding-top: 0.5rem;
}

.map-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-link:hover {
    color: var(--white);
    transform: translateX(4px);
    text-shadow: 0 2px 8px rgba(227, 218, 138, 0.4);
}

/* Contact Form Layout (Contact Page) */
.contact-form-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.contact-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-container {
    text-align: left;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 2px solid rgba(33, 77, 113, 0.2);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(33, 77, 113, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23214d71' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 77, 113, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-button {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 77, 113, 0.3);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 77, 113, 0.4);
    background: var(--secondary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    color: var(--white);
    flex-shrink: 0;
}

.contact-detail-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-detail-item:last-child {
    border-bottom: none;
}

.contact-detail-item h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-detail-item p {
    color: var(--white);
    line-height: 1.8;
    font-style: normal;
    margin: 0;
    opacity: 0.95;
}

.contact-map-integrated {
    flex: 1;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
    background: var(--white);
}

.contact-map-integrated iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-link {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--accent-color);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

footer p {
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .hero-logo {
        max-width: 250px;
        margin-bottom: 1.5rem;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .hero p,
    .page-hero p {
        font-size: 1rem;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .trust-stat-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
        gap: 1.5rem;
    }

    .trust-stat-icon {
        font-size: 3.5rem;
    }

    .trust-stat-number {
        font-size: 3.5rem;
    }

    .trust-stat-label {
        font-size: 1.3rem;
    }

    .trust-header .section-title {
        font-size: 2.25rem;
    }

    .trust-divider {
        flex-direction: column;
        gap: 1rem;
    }

    .divider-text {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .compliance-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .compliance-icon {
        margin: 0 auto;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding: 2rem;
    }

    .about-content h2,
    .section-title {
        font-size: 2rem;
    }

    .page-hero-enhanced {
        padding: 4rem 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .story-header .section-title,
    .promise-header .section-title {
        font-size: 2.25rem;
    }

    .story-paragraph {
        padding: 2rem;
    }

    .story-paragraph h3 {
        font-size: 1.5rem;
    }

    .story-paragraph p {
        font-size: 1rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promise-card {
        padding: 2.5rem 2rem;
    }

    .promise-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .promise-icon {
        font-size: 2rem;
    }

    .promise-card h3 {
        font-size: 1.4rem;
    }

    .value-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .value-number {
        font-size: 2.5rem;
    }

    .features-grid,
    .services-grid,
    .values-grid,
    .careers-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-action-button {
        width: 100%;
        max-width: 300px;
    }

    .trust-excellence {
        padding: 4rem 1rem;
    }

    .trust-header {
        margin-bottom: 3rem;
    }

    .trust-header .section-title {
        font-size: 1.75rem;
    }

    .trust-header .section-subtitle {
        font-size: 1rem;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .trust-stat-card {
        padding: 2rem 1.5rem;
    }

    .trust-stat-icon {
        font-size: 3rem;
    }

    .trust-stat-number {
        font-size: 3rem;
    }

    .trust-stat-label {
        font-size: 1.2rem;
    }

    .trust-stat-description {
        font-size: 0.9rem;
    }

    .trust-divider {
        margin: 3rem auto;
    }

    .divider-text {
        font-size: 0.85rem;
    }

    .compliance-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .compliance-card {
        padding: 1.75rem;
    }

    .compliance-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .compliance-logo {
        height: 70px;
        max-width: 120px;
    }

    .compliance-logo-wrapper {
        min-height: 80px;
        margin-bottom: 1rem;
    }

    .compliance-content h3 {
        font-size: 1.2rem;
    }

    .compliance-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    nav.main-nav {
        flex-direction: column;
        position: relative;
    }
    
    .nav-left {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .logo {
        order: 1;
    }
    
    .hamburger-menu {
        order: 2;
    }
    
    .nav-links {
        display: none;
        order: 3;
        width: 100%;
        flex: 1 1 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(33, 77, 113, 0.1);
        background: var(--white);
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-links > li {
        width: 100%;
        text-align: left;
    }
    
    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        opacity: 1;
        visibility: visible;
        background: rgba(33, 77, 113, 0.05);
    }
    
    .dropdown-menu.show {
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .dropdown-toggle {
        justify-content: flex-start;
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 2rem;
    }
    
    .nav-right {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(33, 77, 113, 0.1);
        background: var(--white);
    }
    
    .nav-right.mobile-open {
        display: flex;
    }
    
    .nav-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
    
    .hamburger-menu {
        width: 28px;
        height: 28px;
    }
    
    nav.main-nav {
        padding: 0 1rem;
    }
    
    .nav-left {
        gap: 0.75rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-layout-enhanced {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-header .section-title {
        font-size: 2rem;
    }

    .contact-header .section-subtitle {
        font-size: 1.1rem;
    }

    .contact-tagline {
        font-size: 0.95rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-info-header h3,
    .map-header h3 {
        font-size: 1.3rem;
    }

    .contact-info-icon,
    .map-icon {
        font-size: 1.75rem;
    }

    .contact-info-value {
        font-size: 1.05rem;
    }

    .email-label {
        font-size: 0.8rem;
    }

    .map-container {
        height: 350px;
    }

    .contact-cta {
        padding: 1.5rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }

    .contact-map {
        min-width: 100%;
    }

    .contact-address {
        text-align: center;
    }

    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-right-column {
        gap: 2rem;
    }

    .contact-form-container {
        text-align: center;
    }

    .contact-details {
        text-align: center;
    }

    .contact-map-integrated {
        min-height: 300px;
    }

    .form-submit-button {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .logo {
        flex-direction: row;
        text-align: left;
    }

    .logo img {
        height: 52px;
    }

    .logo-text {
        font-size: 1rem;
        min-width: 150px;
    }

    .hero-logo {
        margin-bottom: 1rem;
    }

    .hero,
    .page-hero {
        padding: 4rem 1rem;
    }

    .page-hero {
        padding: 3rem 1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .trust-excellence {
        padding: 3rem 1rem;
    }

    .trust-stat-card {
        padding: 1.75rem 1.25rem;
    }

    .trust-stat-number {
        font-size: 2.5rem;
    }

    .trust-stat-label {
        font-size: 1.1rem;
    }

    .page-hero-enhanced {
        padding: 3rem 1rem;
    }

    .page-hero-enhanced h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .hero-stat-label {
        font-size: 0.85rem;
    }

    .story-header .section-title,
    .promise-header .section-title {
        font-size: 1.75rem;
    }

    .story-header .section-subtitle,
    .promise-header .section-subtitle {
        font-size: 1rem;
    }

    .story-paragraph {
        padding: 1.75rem 1.25rem;
    }

    .story-paragraph h3 {
        font-size: 1.3rem;
    }

    .story-paragraph p {
        font-size: 0.95rem;
    }

    .promise-card {
        padding: 2rem 1.5rem;
    }

    .promise-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .promise-icon {
        font-size: 1.75rem;
    }

    .promise-card h3 {
        font-size: 1.25rem;
    }

    .promise-card p {
        font-size: 0.95rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

    .contact-header .section-title {
        font-size: 1.75rem;
    }

    .contact-header .section-subtitle {
        font-size: 1rem;
    }

    .contact-tagline {
        font-size: 0.9rem;
    }

    .contact-info-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-info-header h3,
    .map-header h3 {
        font-size: 1.2rem;
    }

    .contact-info-icon,
    .map-icon {
        font-size: 1.5rem;
    }

    .contact-info-label {
        font-size: 0.85rem;
    }

    .contact-info-value {
        font-size: 1rem;
    }

    .email-label {
        font-size: 0.75rem;
    }

    .map-container {
        height: 300px;
    }

    .contact-cta {
        padding: 1.25rem;
    }

    .contact-cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

/* Products Section */
.products-overview {
    background: var(--white);
    padding: 5rem 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto;
}

.product-link:hover {
    color: var(--secondary-color);
}

/* Product Categories */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
    border-left-color: var(--accent-color);
}

.category-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.category-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Licensing Section */
.licensing {
    background: var(--white);
    padding: 5rem 2rem;
}

.licensing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.license-item {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: block;
}

.license-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.licensing-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.licensing-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.licensing-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.licensing-phone {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.phone-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.phone-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.licensing-hours {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.95;
}

/* Pedigree Notice Banner */
.pedigree-notice {
    background: var(--bg-light);
    padding: 2rem 2rem;
    border-bottom: 2px solid var(--primary-color);
}

.notice-banner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(33, 77, 113, 0.2);
}

.notice-banner p {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.notice-banner a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.notice-banner a:hover {
    color: var(--white);
    text-decoration: none;
}

/* Pedigree Section */
.pedigree {
    background: var(--white);
    padding: 5rem 2rem;
}

.pedigree-content {
    max-width: 900px;
    margin: 0 auto;
}

.pedigree-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pedigree-section:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
    border-left-color: var(--accent-color);
}

.pedigree-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.pedigree-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.pedigree-section p:last-child {
    margin-bottom: 0;
}

.pedigree-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.reference {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.reference a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.reference a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.pedigree-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow);
}

.pedigree-contact h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.pedigree-contact p {
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-phone {
    font-size: 1.75rem;
    margin: 1.5rem 0;
    font-weight: 600;
}

.contact-phone a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-phone a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-hours {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .pedigree-notice {
        padding: 1.5rem 1rem;
    }

    .notice-banner {
        padding: 1rem 1.5rem;
    }

    .notice-banner p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .pedigree-section {
        padding: 2rem 1.5rem;
    }

    .pedigree-section h3 {
        font-size: 1.5rem;
    }

    .pedigree-contact {
        padding: 2.5rem 2rem;
    }

    .pedigree-contact h3 {
        font-size: 1.75rem;
    }

    .contact-phone {
        font-size: 1.5rem;
    }
}

/* Forms Section */
.forms {
    background: var(--white);
    padding: 5rem 2rem;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.form-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.form-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.form-card:hover .form-icon {
    transform: scale(1.1);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-card p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.form-card:hover p {
    color: var(--secondary-color);
}

.forms-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.forms-contact h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.forms-contact p {
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .forms-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .form-card {
        padding: 2.5rem 1.5rem;
        min-height: 200px;
    }

    .form-icon {
        font-size: 3rem;
    }

    .form-card h3 {
        font-size: 1.3rem;
    }

    .forms-contact {
        padding: 2.5rem 2rem;
    }

    .forms-contact h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .forms-grid {
        grid-template-columns: 1fr;
    }
}

