:root {
    --primary-blue: #2374e1;
    --dark-blue: #1656b0;
    --gold: #d4a017;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-offwhite: #f5f3ef;
    --border-color: #dddddd;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;
    --font-cursive: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

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

/* Header & Navigation */
.header {
    background-color: var(--bg-white);
    padding-top: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 15px;
}

.logo-container.top-border {
    border-top: 1px solid var(--border-color);
}

.logo {
    display: flex;
    gap: 5px;
}

.hex {
    width: 35px;
    height: 40px;
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    font-size: 14px;
}

h1 {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
}

.navbar, .sub-navbar {
    background-color: var(--primary-blue);
    padding: 10px 0;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    text-align: center;
}

.hero-image-container {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    object-fit: cover;
}

.banner {
    background-color: var(--dark-blue);
    color: white;
    padding: 15px 20px;
    text-align: center;
}

.banner h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-banner {
    background-color: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.section-banner h2 {
    font-size: 18px;
    font-weight: 600;
}

/* About Section */
.about-section {
    background-color: var(--bg-white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center;
}

.image-box {
    text-align: center;
}

.image-box img {
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.side-title {
    margin-top: 15px;
    font-size: 20px;
    color: var(--text-dark);
}

.text-box {
    text-align: center;
}

.cursive-title {
    font-family: var(--font-cursive);
    color: var(--gold);
    font-size: 28px;
    font-style: italic;
    margin-bottom: 20px;
}

.text-box p {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
    text-align: justify;
}

/* Values Section */
.values-section {
    background-color: var(--bg-offwhite);
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.value-row {
    max-width: 1000px;
    margin: 0 auto 20px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.value-title {
    font-weight: 700;
    font-size: 16px;
    min-width: 150px;
    color: var(--text-dark);
}

.value-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-light);
}

/* What We Do Section */
.what-we-do-section {
    background-color: var(--bg-white);
}

.what-we-do-grid {
    max-width: 1000px;
    margin: 20px auto 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.wwd-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.wwd-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* How We Do It Section */
.how-we-do-it-section {
    background-color: var(--bg-offwhite);
    padding-bottom: 40px;
}

.how-we-do-it-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.how-we-do-it-grid.bottom-row {
    margin-top: 0;
    padding-top: 0;
}

.hwd-col {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hwd-col h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

.hwd-col img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 2px;
}

.hwd-col h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.services-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.services-list li {
    margin-bottom: 5px;
}

.hwd-col p {
    font-size: 13px;
    color: var(--text-light);
}

/* Secondary Banner Section */
.secondary-banner-section {
    background-color: var(--bg-white);
}

.tech-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0;
    align-items: stretch;
}

.tech-image {
    background-color: #000;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-text {
    padding: 40px 20px;
}

.focus-title {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.tech-text h4 {
    color: var(--primary-blue);
    font-size: 16px;
    margin-bottom: 5px;
}

.tech-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.tagline {
    font-style: italic;
    font-weight: 600;
    color: var(--text-dark) !important;
    margin-top: 30px;
}

/* Who We Serve Section */
.who-we-serve-section {
    background-color: var(--bg-offwhite);
    padding: 40px 20px;
}

.serve-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

.serve-title-container {
    background-color: var(--primary-blue);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    min-width: 200px;
}

.serve-title {
    color: white;
    font-size: 20px;
}

.serve-list-container {
    padding: 40px;
}

.serve-list-container h3 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 20px;
}

.serve-list-container ul {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.serve-list-container ul li {
    margin-bottom: 10px;
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
    background-color: var(--bg-white);
}

.coming-soon-section h2 {
    color: var(--gold);
    font-size: 20px;
    margin: 30px 0;
    letter-spacing: 2px;
}

.speaker-image {
    max-width: 600px;
    margin: 0 auto 40px;
}

.speaker-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* New Site Footer */
.site-footer {
    background-color: #0b1f3d;
    color: #e0e0e0;
    margin-top: auto;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    justify-content: flex-start;
    padding: 0 0 15px 0;
}

.footer-h2 {
    color: var(--bg-white);
    font-size: 22px;
    font-weight: 700;
}

.footer-hex {
    border-color: var(--gold);
    color: var(--gold);
    width: 30px;
    height: 35px;
    font-size: 12px;
}

.footer-desc {
    font-size: 14px;
    color: #a0aabf;
    line-height: 1.8;
    max-width: 350px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0aabf;
}

.footer-contact-info .icon {
    font-size: 16px;
}

.footer-bottom {
    background-color: #061327;
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #7a869e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contact Page Section */
.contact-page-section {
    background-color: var(--bg-white);
    padding-bottom: 40px;
}

.contact-page-content {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hand-image img {
    max-width: 300px;
    border-radius: 4px;
}

.contact-details {
    text-align: center;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.form-group label {
    width: 80px;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    background-color: #e9e9e9;
    border-radius: 2px;
    font-family: var(--font-main);
}

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

.submit-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 40px;
    font-weight: 600;
    cursor: pointer;
    float: right;
    transition: background-color 0.3s;
    border-radius: 2px;
}

.submit-btn:hover {
    background-color: var(--dark-blue);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .how-we-do-it-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }
    
    .value-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
    
    .how-we-do-it-grid {
        grid-template-columns: 1fr;
    }
    
    .serve-container {
        flex-direction: column;
    }
    
    .serve-title-container {
        justify-content: center;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-desc {
        margin: 0 auto;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-info li {
        justify-content: center;
    }
}
