/* Basic Styles */
body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #EDEAE5;
    font-size: 18px;
}

a {
    text-decoration: none;
    color: #026670;
    transition: color 0.3s ease;
}

a:hover {
    color: #9FEDD7;
}

ul {
    list-style: none;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    color: #026670;
}

h2 {
    font-size: 2.5rem;
    color: #026670;
}

h3 {
    font-size: 1.8rem;
    color: #026670;
}

/* Header and Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem 5%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;          /* Adjust as needed */
  width: auto;           /* Maintains aspect ratio */
  max-height: 60px;      /* Responsive upper limit */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05); /* Slight zoom on hover */
}


.nav-links {
    display: flex;
}

.nav-links .nav-logo {
    display: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    color: #555;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}
/* Hero Section */
#hero {
    position: relative; /* Required for ::before to overlay */
    background: url('../images/site-engineer-construction-site.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #050505;
    overflow: hidden; /* Optional: hides ::before overflow */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(206, 206, 212, 0.767); /* Lighten image */
    z-index: 0;
}

.hero-content {
    position: relative; /* Needed to place above ::before */
    z-index: 1; /* Must be > 0 to appear above the overlay */
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons .cta-button {
    background: #026670;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 0 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-buttons .cta-button:hover {
    background: #9FEDD7;
    color: #026670;
    transform: translateY(-2px);
}

.hero-buttons .cta-button-secondary {
    background: #FEF9C7;
    color: #026670;
    padding: 1rem 2rem;
    border: 2px solid #026670;
    border-radius: 50px;
    margin: 0 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-buttons .cta-button-secondary:hover {
    background: #026670;
    color: #ffffff;
    transform: translateY(-2px);
}



/* Who We Are Section */
#who-we-are {
    display: flex;
    justify-content: space-around;
    padding: 4rem 5%;
    background: #f4f4f4;
}

.who-we-are-item {
    text-align: center;
    max-width: 30%;
}

.who-we-are-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Intro Section */
#about-intro {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
}

.about-intro-text {
    flex: 1;
    padding-right: 2rem;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-intro-text h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-intro-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-intro-images img {
    width: 100%;
    border-radius: 5px;
}

/* Services Intro Section */
#services-intro {
    padding: 4rem 5%;
    text-align: center;
    background: #f4f4f4;
}

#services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.service-intro-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.service-intro-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Value Proposition Section */
#value-proposition {
    padding: 4rem 5%;
    background: #f4f4f4;
}

.value-prop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-prop-item {
    text-align: center;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-prop-item:hover {
    transform: translateY(-5px);
}

.value-prop-item i {
    font-size: 3rem;
    color: #026670;
    margin-bottom: 1.5rem;
}

.value-prop-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #026670;
}

.value-prop-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more-link {
    background: #9FEDD7;
    color: #026670;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more-link:hover {
    background: #026670;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Featured Resources Section */
#featured-resources {
    padding: 4rem 5%;
    text-align: center;
}

.featured-resources-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-resources-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.featured-resources-container > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.featured-resource-card {
    background: linear-gradient(135deg, #FEF9C7, #9FEDD7);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid #026670;
    transition: all 0.3s ease;
}

.featured-resource-card:hover {
    background: linear-gradient(135deg, #9FEDD7, #026670);
    border-color: #026670;
    color: white;
}

.featured-resource-card i {
    font-size: 3.5rem;
    color: #026670;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.featured-resource-card:hover i {
    color: #FEF9C7;
}

.featured-resource-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #026670;
    transition: color 0.3s ease;
}

.featured-resource-card:hover h3 {
    color: white;
}

.featured-resource-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.featured-resource-card:hover p {
    color: white;
}

.featured-resource-card .cta-button {
    background: #026670;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.featured-resource-card:hover .cta-button {
    background: #FEF9C7;
    color: #026670;
}

/* Project Showcase Section */
#project-showcase {
    padding: 4rem 5%;
    background: #f4f4f4;
    text-align: center;
}

.project-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.project-showcase-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.project-showcase-container > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #026670;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Contact CTA Home Section */
#contact-cta-home {
    padding: 4rem 5%;
    text-align: center;
    background: white;
}

#contact-cta-home h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#contact-cta-home .cta-button {
    background: #026670;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

#contact-cta-home .cta-button:hover {
    background: #9FEDD7;
    color: #026670;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #FEF9C7, #9FEDD7);
    padding: 2rem 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
}

/* About Page */
#company-info {
    padding: 4rem 5%;
}

.company-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Hero Card - Modern Layout */
.hero-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-card:hover .hero-image img {
    transform: scale(1.05);
}

.overlay-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #026670, #9FEDD7);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(2,102,112,0.3);
}

.hero-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-tag {
    background: #FEF9C7;
    color: #026670;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero-content h2 {
    font-size: 2.2rem;
    color: #026670;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(2,102,112,0.1);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #026670, #9FEDD7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.2rem;
    color: white;
}

.info-card h3 {
    color: #026670;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Advantages List - Modern Checkmarks */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.advantage-item i {
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.advantage-item span {
    color: #333;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Special Card Styling */
.company-card {
    border-left: 4px solid #FEF9C7;
}

.mission-card {
    border-left: 4px solid #026670;
}

.commitment-card {
    border-left: 4px solid #9FEDD7;
}

.advantages-card {
    border-left: 4px solid #FEF9C7;
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 4rem 5%;
    background: #f4f4f4;
}

.company-details {
    margin-bottom: 2rem;
}

.company-details-list {
    list-style: none;
    padding: 0;
}

.company-details-list li {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.brand-identity {
    margin-bottom: 2rem;
}

.brand-identity ul {
    list-style: none;
    padding: 0;
}

.brand-identity li {
    margin-bottom: 0.5rem;
}

.company-info-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.company-info-images img {
    width: 100%;
    border-radius: 5px;
}

#services-overview {
    padding: 4rem 5%;
    background: #f4f4f4;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-overview-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-overview-card h3 {
    color: #026670;
    margin-bottom: 1rem;
}

.service-overview-card ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.digital-tools {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.digital-tools h4,
.finance-section h4 {
    color: #555;
    margin-bottom: 0.5rem;
}

.finance-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

#policies {
    padding: 4rem 5%;
}

.policies-grid {
    margin-top: 2rem;
}

.policies-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.policies-list li {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid #026670;
}

#team-section {
    padding: 4rem 5%;
    background: #f4f4f4;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-member-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(2,102,112,0.08);
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: rgba(2,102,112,0.2);
}

.member-header {
    background: linear-gradient(135deg, #026670 0%, #039b8a 50%, #9FEDD7 100%);
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.member-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    transform: rotate(45deg);
    animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.member-header h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.member-title {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    z-index: 1;
}

.member-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.member-badges {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-container {
    background: transparent;
    padding: 0;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-container:hover {
    background: white;
    border-color: #026670;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(2,102,112,0.15);
}

.badge-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transition: left 0.5s ease;
}

.badge-container:hover::before {
    left: 100%;
}

.badge-link {
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.credential-badge {
    width: 220px;
    height: 165px;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
}

.badge-container:hover .credential-badge {
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.15));
    transform: scale(1.05);
}

.member-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    padding: 0 0.5rem;
}

.member-specialties {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.specialty-tag {
    display: inline-block;
    background: linear-gradient(135deg, #026670, #039b8a);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(2,102,112,0.2);
}

.team-member-card img {
    width: 300px;
    height: 300px;
    border-radius: 5%;
    object-fit: cover;
    margin-bottom: 0;
}

.team-member-card p {
    margin-bottom: 0.3rem;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.3;
}

.accreditation-note {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.accreditation-note p {
    margin-bottom: 1rem;
}

/* Services Page */
#services-page-grid {
    padding: 4rem 5%;
}

.service-page-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.service-page-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-page-item img {
    width: 45%;
    border-radius: 5px;
}

.service-page-item-text {
    flex: 1;
    padding: 0 2rem;
}

/* Projects Page */
#projects-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
}

.project-page-card {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-page-card:hover {
    transform: translateY(-5px);
}

.project-page-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-page-info {
    padding: 1.5rem;
}

/* Contact Page */
#contact-page-content {
    display: flex;
    padding: 4rem 5%;
}

#contact-form-container {
    flex: 1;
    padding-right: 2rem;
}

#contact-details-container {
    flex: 1;
}

#contact-form-container form {
    display: flex;
    flex-direction: column;
}

#contact-form-container label {
    margin-bottom: 0.5rem;
}

#contact-form-container input,
#contact-form-container textarea {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#map-container {
    margin-top: 2rem;
}

#map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.contact-info,
.business-details,
.address-details {
    margin-bottom: 2rem;
}

.contact-info h3,
.business-details h3,
.address-details h3 {
    color: #026670;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #026670;
    padding-bottom: 0.5rem;
}

.contact-info p,
.business-details p,
.address-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info i,
.address-details i {
    margin-right: 0.5rem;
    color: #026670;
    width: 20px;
}

.contact-info a {
    color: #026670;
    font-weight: 600;
}

.contact-info a:hover {
    color: #9FEDD7;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #026670;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

#scrollToTopBtn:hover {
    background: #9FEDD7;
    color: #026670;
}

#contact-form-container .cta-button {
    background: #026670;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

#contact-form-container .cta-button:hover {
    background: #9FEDD7;
    color: #026670;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 5%;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .featured-resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-prop-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .showcase-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    /* Typography scaling */
    h1 {
        font-size: 2.2rem !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    h3 {
        font-size: 1.4rem !important;
    }
    
    body {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Button responsiveness */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding: 0 1rem;
    }
    
    .hero-buttons .cta-button,
    .hero-buttons .cta-button-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        margin: 0;
        padding: 1rem 1.5rem;
    }
    
    /* Section padding adjustments */
    section {
        padding: 3rem 5% !important;
    }
    
    .page-header {
        padding: 1.5rem 5% !important;
    }
    
    .page-header h1 {
        font-size: 2.2rem !important;
    }

    .nav-links {
        position: fixed;
        left: 0;
        right: 0;
        height: 100vh;
        top: 3.2vh;
        background-color: white;
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100vw;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        justify-content: center;
        z-index: 9999;
    }

    .nav-links .nav-logo {
        display: block;
        margin-bottom: .1rem;
    }

    .nav-links .nav-logo img {
        height: 120px;
    }

    .nav-links li {
        opacity: 0;
        font-size: 1.6rem;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
        display: flex;
        justify-content: center;
    }

    .nav-active + .logo {
        display: none;
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    #who-we-are, #about-intro {
        flex-direction: column;
    }
    .who-we-are-item {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .about-intro-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .service-page-item {
        flex-direction: column;
    }

    .service-page-item:nth-child(even) {
        flex-direction: column;
    }

    .service-page-item img {
        width: 100%;
        margin-bottom: 2rem;
    }

    #contact-page-content {
        flex-direction: column;
    }

    #contact-form-container {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .company-info-container {
        flex-direction: column;
    }

    .company-info-images {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .policies-list {
        grid-template-columns: 1fr;
    }

    .team-member-card p {
        text-align: center;
    }
}

/* Learning Hub Styles */
.page-header p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.5rem;
}

#featured-article {
    padding: 4rem 5%;
    background: #f4f4f4;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-post {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.featured-image {
    flex: 1;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    flex: 1;
    padding: 2rem;
}

.featured-badge {
    background: #026670;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-post h2 {
    margin: 1rem 0;
    color: #333;
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.read-more-btn {
    background: #026670;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #9FEDD7;
    color: #026670;
    transform: translateY(-2px);
}

#categories {
    padding: 4rem 5%;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    font-size: 2.5rem;
    color: #026670;
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.post-count {
    background: #e9ecef;
    color: #666;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-top: 1rem;
    display: inline-block;
}

#recent-articles {
    padding: 4rem 5%;
    background: #f4f4f4;
}

.recent-container {
    max-width: 1200px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-category {
    background: #026670;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.article-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.8rem;
    color: #888;
}

.read-more {
    color: #026670;
    font-weight: 600;
}

.read-more:hover {
    color: #9FEDD7;
}

.coming-soon-badge {
    background: #ffc107;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.placeholder {
    position: relative;
}

.placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
}

#newsletter {
    padding: 4rem 5%;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 300px;
}

.newsletter-note {
    font-size: 0.9rem;
    color: #666;
}

/* Resources Hub Styles */
#tools-intro {
    padding: 4rem 5%;
}

.tools-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tools-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 3rem;
    color: #026670;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

#featured-tool {
    padding: 4rem 5%;
    background: #f4f4f4;
}

.featured-tool-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tool-header {
    background: linear-gradient(135deg, #026670, #9FEDD7);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tool-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.tool-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.material-specs ul,
.product-links {
    margin-top: 1rem;
}

.material-specs ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #026670;
    margin-bottom: 0.5rem;
}

.product-links a:hover {
    color: #9FEDD7;
}

.calculator-form {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.results-container {
    margin-top: 2rem;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.results-table th,
.results-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.results-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.results-table tfoot td {
    font-weight: 600;
    border-top: 2px solid #026670;
}

.tool-downloads {
    grid-column: 1 / -1;
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 2rem;
}

.download-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.download-item i {
    font-size: 2rem;
    color: #28a745;
}

.download-info h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.coming-soon {
    background: #ffc107;
    color: #333;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.consultation-note {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.tool-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.tool-disclaimer h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.tool-disclaimer p {
    color: #856404;
    margin: 0;
}

#future-resources {
    padding: 4rem 5%;
}

.future-resources-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.future-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.future-tool-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.future-tool-card i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.future-tool-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.status-badge {
    background: #6c757d;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

@media screen and (max-width: 768px) {
    .featured-post {
        flex-direction: column;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .tool-content {
        grid-template-columns: 1fr;
    }
    
    .tools-features {
        grid-template-columns: 1fr;
    }
    
    .future-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .download-section {
        grid-template-columns: 1fr;
    }
    
    .value-prop-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-prop-item {
        padding: 2rem 1.5rem;
    }
    
    .featured-resource-card {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    /* Very small screens */
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Navigation adjustments */
    nav {
        padding: 0.5rem 3%;
    }
    
    .logo img {
        height: 35px;
    }
    
    /* Typography for very small screens */
    h1 {
        font-size: 1.8rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    /* Section adjustments */
    section {
        padding: 2rem 3% !important;
    }
    
    .page-header {
        padding: 1rem 3% !important;
    }
    
    .page-header h1 {
        font-size: 1.8rem !important;
    }
    
    /* Cards and containers */
    .value-prop-item,
    .featured-resource-card,
    .category-card,
    .article-card,
    .future-tool-card {
        padding: 1.5rem 1rem;
    }
    
    .featured-resource-card i,
    .value-prop-item i {
        font-size: 2.5rem;
    }
    
    /* Stats adjustment */
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Button adjustments */
    .hero-buttons .cta-button,
    .hero-buttons .cta-button-secondary,
    .cta-button,
    .learn-more-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Table responsiveness */
    .results-table {
        font-size: 0.8rem;
    }
    
    .results-table th,
    .results-table td {
        padding: 0.5rem;
    }
    
    /* Form inputs */
    #contact-form-container input,
    #contact-form-container textarea,
    .input-group input {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    /* Tool content adjustments */
    .tool-header {
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .tool-content {
        padding: 1.5rem 1rem;
    }
    
    /* Featured post adjustments */
    .featured-content {
        padding: 1.5rem 1rem;
    }
    
    /* Newsletter form */
    .newsletter-form input {
        max-width: none;
        margin-bottom: 0.5rem;
    }
}

/* Additional responsive grid fixes */
@media screen and (max-width: 600px) {
    .featured-resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .services-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .policies-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tools-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .future-tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .download-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Make sure grids don't break on small screens */
    #projects-page-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 3rem 5%;
    }
    
    /* Calculator form improvements */
    .calculator-form {
        padding: 1rem;
    }
    
    /* Contact page improvements */
    .contact-info h3,
    .business-details h3,
    .address-details h3 {
        font-size: 1.2rem;
    }
    
    /* Map container */
    #map-container iframe {
        height: 250px;
    }
}

/* Standards Framework Styles */
#standards-framework {
    padding: 4rem 5%;
    background: #f4f4f4;
}

.standards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.framework-diagram {
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 400px;
}

.framework-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 9;
}

.top-standard {
    background: white;
    padding: 1.5rem 3rem;
    border: 2px solid #333;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.top-standard h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.framework-arrows {
    position: absolute;
    top: 80px;
    width: 100%;
    height: 180px;
    pointer-events: none;
}

/* Arrow from top box to State/Territory box */
.arrow-down:nth-child(1) {
    position: absolute;
    left: 15%;
    top: 5;
    width: 3px;
    height: 65px;
    background: #026670;
    transform-origin: top;
    transform: rotate(15deg);
    z-index: 1;
}

.arrow-down:nth-child(1)::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 15px solid #026670;
    transform: rotate(-14deg);
}

/* Arrow from top box to Local Council box */
.arrow-down:nth-child(2) {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 70px;
    background: #026670;
    transform: translateX(-50%);
}

.arrow-down:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 15px solid #026670;
}

/* Arrow from top box to Utility box */
.arrow-down:nth-child(3) {
    position: absolute;
    right: 15%;
    top: 0;
    width: 3px;
    height: 90px;
    background: #026670;
    transform-origin: top;
    transform: rotate(-15deg);
}

.arrow-down:nth-child(3)::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -7px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 15px solid #026670;
    transform: rotate(13deg);
}

.framework-bottom {
    position: absolute;
    top: 150px;
    width: 100%;
    height: 250px;
}

.bottom-standard {
    position: absolute;
    background: white;
    padding: 1.2rem 1.5rem;
    border: 2px solid #333;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 220px;
}

.bottom-standard h3 {
    margin: 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.bottom-standard:nth-child(1) {
    left: 0;
    top: 0;
}

.bottom-standard:nth-child(2) {
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
}

.bottom-standard:nth-child(3) {
    right: 0;
    top: 120px;
}

.standards-detailed {
    margin-top: 3rem;
}

.standard-detail {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.standard-detail h3 {
    color: #026670;
    margin-bottom: 1rem;
    border-bottom: 2px solid #026670;
    padding-bottom: 0.5rem;
}

.standard-detail ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Resource Inventory Styles */
#resource-inventory {
    padding: 4rem 5%;
}

.inventory-container {
    max-width: 1200px;
    margin: 0 auto;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.inventory-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.inventory-item:hover {
    transform: translateY(-5px);
}

.item-header {
    background: linear-gradient(135deg, #026670, #9FEDD7);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-header i {
    font-size: 2rem;
}

.item-header h3 {
    margin: 0;
    color: white;
}

.item-content {
    padding: 2rem;
}

.resource-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.resource-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.resource-category h4 {
    color: #026670;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.resource-category p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.item-status {
    padding: 1rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.developing {
    background: #ffc107;
    color: #333;
}

.status-badge.planned {
    background: #6c757d;
    color: white;
}

.status-badge.expanding {
    background: #28a745;
    color: white;
}

.inventory-item.coming-soon {
    background: #f8f9fa;
    border: 2px dashed #ccc;
}

.inventory-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: #e3f2fd;
    border-radius: 8px;
    text-align: center;
}

/* Detailed Services Styles */
.service-detail-section {
    padding: 4rem 5%;
    border-bottom: 1px solid #eee;
}

.service-detail-section:nth-child(even) {
    background: #f8f9fa;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Layout with Image Placeholders */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
}

.service-layout.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.service-layout.reverse .service-image {
    order: 2;
}

.service-layout.reverse .service-content {
    order: 1;
}

/* Image Placeholder Styling */
.service-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #026670;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(2,102,112,0.05) 50%, transparent 70%);
    animation: placeholder-shimmer 3s ease-in-out infinite;
}

@keyframes placeholder-shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.image-placeholder:hover {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-color: #9FEDD7;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2,102,112,0.15);
}

.image-placeholder p {
    color: #026670;
    font-weight: 600;
    margin: 0.5rem 0;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.placeholder-note {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    background: rgba(255,255,255,0.8);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

/* Service Content Styling */
.service-content {
    padding: 1rem 0;
}

.service-content h2 {
    color: #026670;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 3px solid #026670;
    padding-bottom: 0.8rem;
}

.service-content h2 i {
    background: linear-gradient(135deg, #026670, #9FEDD7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.service-content p {
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: #333;
    font-size: 1rem;
}

.service-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.service-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.service-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Service Sub-sections */
.service-list,
.expertise-highlight,
.authority-info,
.service-offerings,
.capabilities-grid,
.service-benefits,
.design-services,
.compliance-focus {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 1.5rem 0;
    border-left: 4px solid #026670;
}

.service-list h4,
.expertise-highlight h4,
.authority-info h4,
.service-offerings h4,
.capabilities-grid h4,
.service-benefits h4,
.design-services h4,
.compliance-focus h4 {
    color: #026670;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Support Categories */
.support-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(2,102,112,0.1);
    position: relative;
    overflow: hidden;
}

.support-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #026670, #9FEDD7);
}

.support-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.support-category h3 {
    color: #026670;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.support-category p {
    color: #666;
    line-height: 1.6;
}

/* Accreditation Badges */
.accreditation-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.badge-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(2,102,112,0.1);
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.badge-item h3 {
    color: #026670;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.badge-item p {
    color: #666;
    line-height: 1.5;
}

/* Original section styling for non-layout sections */
.service-detail-container > h2 {
    color: #026670;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #026670;
    padding-bottom: 0.5rem;
    font-size: 2rem;
}

.service-detail-container > p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

/* Fix grid columns for medium screens */
@media screen and (max-width: 900px) {
    .value-prop-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-resources-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .inventory-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-diagram {
        align-items: stretch;
    }
    
    .framework-tier {
        min-width: auto;
    }
    
    .support-categories {
        grid-template-columns: 1fr;
    }
    
    .accreditation-badges {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .inventory-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .item-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .item-content {
        padding: 1.5rem;
    }
    
    .service-detail-section {
        padding: 2rem 5%;
    }
    
    /* Framework diagram responsive */
    .framework-diagram {
        height: auto;
        position: static;
    }
    
    .framework-top {
        position: static;
        margin-bottom: 1rem;
    }
    
    .top-standard {
        max-width: none;
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .top-standard h3 {
        font-size: 1.1rem;
    }
    
    .framework-arrows {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .arrow-down {
        position: static;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 20px solid #026670;
        transform: none !important;
    }
    
    .arrow-down::before {
        display: none;
    }
    
    .framework-bottom {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .bottom-standard {
        position: static;
        width: 100%;
        padding: 1rem 1.5rem;
        transform: none !important;
    }
    
    .bottom-standard h3 {
        font-size: 0.9rem;
    }
    
    /* Service Layout Responsive */
    .service-layout,
    .service-layout.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-layout.reverse .service-image,
    .service-layout.reverse .service-content {
        order: unset;
    }
    
    .service-content h2 {
        font-size: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .service-content h2 i {
        font-size: 1.5rem;
    }
    
    .image-placeholder {
        padding: 2rem 1rem;
        min-height: 200px;
    }
    
    .service-list,
    .expertise-highlight,
    .authority-info,
    .service-offerings,
    .capabilities-grid,
    .service-benefits,
    .design-services,
    .compliance-focus {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    /* Hero Card Responsive */
    .hero-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .overlay-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .company-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
