/* Global Styles */
:root {
    --primary-red: #D52B1E; /* Canadian red */
    --primary-white: #FFFFFF;
    --primary-black: #000000;
    --secondary-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #777777;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-white);
}

html, body {
  overflow-x: hidden;
  width: 99%;
}

img, video, iframe {
  max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--primary-white);
    border: 2px solid var(--primary-red);
}

.btn-red:hover {
    background-color: transparent;
    color: var(--primary-red);
}

.btn-white {
    background-color: var(--primary-white);
    color: var(--primary-red);
    border: 2px solid var(--primary-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--primary-white);
}

/* Header Styles */
header {
    background-color: var(--primary-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-black);
    letter-spacing: 1.5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-black);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--primary-white);
    padding: 180px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--primary-white);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--primary-white);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(213, 43, 30, 0.2);
    border-color: var(--primary-red);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--secondary-gray);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-item {
    background-color: var(--primary-white);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(213, 43, 30, 0.1);
}

.reason-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.industry-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(213, 43, 30, 0.2);
}

.industry-img {
    height: 200px;
    overflow: hidden;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-img img {
    transform: scale(1.1);
}

.industry-content {
    padding: 25px;
    background-color: var(--primary-white);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--primary-white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 30px rgba(213, 43, 30, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-red);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Recommended';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-red);
    color: var(--primary-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-card {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.partner-card img {
    max-width: 150px;
    max-height: 80px;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* Clients Section */
.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.clients-logos img {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.clients-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    background-color: var(--primary-red);
    color: var(--primary-white);
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--primary-white);
}

/* Footer */
footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 10px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--primary-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col p, .footer-col a {
    color: #aaa;
    margin-bottom: 15px;
    display: block;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-red);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    /* Mobile Navigation */
    #mainNav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-white);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 15px 0;
        z-index: 1000;
        margin: 0;
    }

    #mainNav.active ul {
        display: flex !important;
    }

    nav ul li {
        padding: 12px 20px !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    /* Header Structure */
    .header-content {
        position: relative;
        padding: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    /* Original styles */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .header-content .btn-red {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Contact Form Styles */
.contact-form {
    background-color: var(--secondary-gray);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

/* About Us Section */
.about-us {
    background-color: var(--primary-white);
    text-align: center;
}

.bold-subtitle {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Pricing Section Updates */
.pricing-description {
    font-style: italic;
    margin: 20px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Partners Section Updates */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.partner-card {
    text-align: center;
    padding: 30px;
    background: var(--primary-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(213, 43, 30, 0.1);
}

.partner-card img {
    max-height: 80px;
    margin-bottom: 20px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
/* Logo Styles */
.logo {
    height: 60px; /* Adjust based on your logo's aspect ratio */
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 120px; /* Prevent logo from being too wide */
    transition: all 0.3s ease;
}

/* Optional: Add hover effect */
.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Adjust header padding if needed */
.header-content {
    padding: 10px 0;
}

/* Header Button Styles */
.header-content .btn-red {
    padding: 8px 16px;       /* Reduced from 12px 25px */
    font-size: 0.85rem;      /* Slightly smaller text */
    white-space: nowrap;     /* Prevent text wrapping */
    margin-left: 15px;       /* Space from other nav items */
}






/* For a more compact button */
.header-content .btn-red {
    line-height: 1.2;        /* Tighter text spacing */
    letter-spacing: 0.5px;   /* Slightly condensed text */
    border-width: 1px;       /* Thinner border */
}

/* Floating Video Styles - Fixed */
.floating-video {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.floating-video.active {
    transform: translateX(0);
    opacity: 1;
}

.floating-video video {
    width: 100%;
    display: block;
    border: 2px solid #D52B1E;
}

.close-video {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #D52B1E;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .floating-video {
        width: 250px;
        right: 10px;
        bottom: 10px;
    }
}

/* ======================
   Cybersecurity Page
   ====================== */

/* Hero Section */
.cyber-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cybersecurity-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

.cyber-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content */
.cyber-main {
    padding: 60px 0;
}

.cyber-main h2 {
    text-align: center;
    margin-bottom: 20px;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

/* Cards Layout */
.cyber-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cyber-card {
    width: 300px;
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-red);
}

.cyber-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(213, 43, 30, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.cta-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-card h3 {
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 1000px) {
    .cyber-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .cyber-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .cyber-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Expanded Content Styles */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 15px;
    background: rgba(255,255,255,0.9);
    margin-top: 15px;
}

.expanded-content.active {
    max-height: 1000px;
    padding: 15px;
    border-top: 2px solid rgba(213, 43, 30, 0.2);
}

.btn-learn-more {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 8px 20px;
    margin-top: 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-learn-more:hover {
    background: var(--primary-red);
    color: white;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: rgba(213, 43, 30, 0.05);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--primary-red);
}

.feature-item i {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item h5 {
    margin: 5px 0;
    font-size: 1rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Service Card Hover Effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(213, 43, 30, 0.1);
}

.expanded-content {
    max-height: 0 !important;
}
.expanded-content.active {
    max-height: 1000px !important;
}

/* Contact Form Styles */
.contact-form {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.qtek-form {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea,
.qtek-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.qtek-select:focus {
    border-color: #D52B1E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(213, 43, 30, 0.1);
}

.qtek-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D52B1E'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 60px 0;
    }
    
    .qtek-form {
        padding: 30px;
    }
}

/* Contact Form Styles */
.contact-form {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.qtek-form {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Thank You Page Styles */
.thankyou-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/thankyou-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thankyou-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

.thankyou-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.thankyou-hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-actions .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .thankyou-hero {
        padding: 80px 0;
    }
    
    .thankyou-hero h1 {
        font-size: 2.2rem;
    }
    
    .thankyou-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-actions .btn {
        width: 100%;
    }
}

/* Add to your CSS file */
.quick-links-columns {
    display: flex;
    gap: 20px;
}

.quick-links-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 120px;
}

.footer-cta {
    color: white;
    background-color: var(--primary-red);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.footer-cta:hover {
    background-color: #d32f2f;
}

/* Add this to your existing button styles */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Ensure all buttons have equal width */
.hero-btns .btn {
    min-width: 180px;
    text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Story Page Styles */
.story-content {
    padding: 60px 0;
    background-color: white;
}

.story-flow {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image {
    margin: 40px 0;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.story-image.left {
    float: left;
    width: 45%;
    margin-right: 5%;
    margin-left: 0;
}

.story-image.right {
    float: right;
    width: 45%;
    margin-left: 5%;
    margin-right: 0;
}

.story-image.full {
    clear: both;
    width: 100%;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

blockquote {
    font-style: italic;
    border-left: 3px solid var(--primary-red);
    padding-left: 20px;
    margin: 25px 0;
    color: var(--text-dark);
}

.mission-points {
    list-style: none;
    margin: 30px 0;
}

.mission-points li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.mission-points i {
    color: var(--primary-red);
    position: absolute;
    left: 0;
    top: 3px;
}

.story-signature {
    text-align: center;
    font-style: italic;
    margin: 60px 0 40px;
    font-size: 1.2rem;
}

.story-signature p:first-child {
    color: var(--primary-red);
    font-weight: 600;
}

.story-cta {
    text-align: center;
    margin-top: 50px;
}

/* Clear floats */
.story-flow::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .story-image.left,
    .story-image.right {
        float: none;
        width: 100%;
        margin: 30px 0;
    }
}
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .qtek-form {
    padding: 20px;
  }
}