* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter Tight', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #2d3748;
}

nav {
    padding: 1.0rem 10%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

nav.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #be202e;
}

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

.nav-links a {
    color: #2d3748;
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #be202e;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.hero .subtitle {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.hero .cta-button {
    position: relative;
    z-index: 2;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: blur(4px);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #be202e 0%, #7e202e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(190, 32, 46, 0.4);
    background: linear-gradient(135deg, #be202e 0%, #be202e 100%);
}

.cta-button .fa-shield-alt {
    margin-right: 4px;
}

.cta-button .fa-angle-right {
    margin-left: 4px;
}

.services {
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #be202e;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4a5568;
}

/* Pricing Section Styles */
.pricing {
    padding: 4rem 10%;
    background-color: #ffffff;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #082b45;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.pricing-card h3 {
    color: #1a202c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #be202e;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #4a5568;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 0.8rem;
    color: #4a5568;
}

/* Footer Styles */
footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 3rem 10%;

}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.about {
    padding: 4rem 10%;
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #082b45;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Add the nav-cta button styling */
.nav-links .nav-cta {
    background-color: #ffffff;
    color: #bf202f;
    border: 1px solid #bf202f;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-right: 15px;
}

@media (max-width: 850px) {
    .nav-links .nav-cta {
        display: none;
    }
}
.nav-links .nav-cta:hover {
    background-color: #bf202f;
    color: white;
    border: 1px solid #bf202f;
}



/* If nav is scrolled, adjust the button color for better contrast */
.scrolled .nav-links .nav-cta {
}

.what-is,
.importance,
.peace-of-mind {
    padding: 80px 20px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.content-wrapper.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .content-wrapper.reverse {
        flex-direction: column;
    }
    
    .text-content,
    .image-content {
        width: 100%;
    }
}

.light-section {
    background-color: #ffffff;
}

.dark-section {
    background-color: #1a1a1a;
    color: #fff;
}
/* Essential Cybersecurity Terms Section */
.key-terms {
    padding: 80px 20px;
    text-align: center;
}

.key-terms h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.term-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.term-card h3 {
    text-align: center;
    margin: 15px 0;
}

.term-card p {
    font-size: 75%;
    line-height: 1.5;
}

.term-card i {
    font-size: 2em;
    color: #2c3e50;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .key-terms {
        padding: 60px 15px;
    }

    .key-terms h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .terms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .term-card {
        padding: 25px;
    }
}

/* Reset all sections to white background first */
section {
    background-color: #fff;
}

/* Make odd numbered sections light grey, starting after hero */
section:not(.hero):nth-child(odd) {
    background-color: #f5f5f5;
}

/* Keep dark sections dark where specifically needed */
.dark-section {
    background-color: #1a1a1a;
    color: #fff;
}

/* Ensure hero section maintains its style */
.hero {
    background-color: transparent;  /* Keep transparent for video background */
}

/* Key Terms Section Styles */
.key-terms .terms-grid .term-card i {
    color: #bf202f;
    font-size: 4em;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.contact {
    padding: 80px 20px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}


/* Privacy Policy Page Styles */
.privacy-policy-container {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.privacy-policy-container h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-policy-container h2 {
    font-size: 1.8rem;
    color: #444;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.privacy-policy-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.privacy-policy-container ul {
    margin: 20px 0;
    padding-left: 40px;
}

.privacy-policy-container li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.privacy-policy-container a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy-container a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.last-updated {
    font-style: italic;
    color: #888;
    margin-top: 40px;
    text-align: center;
}

/* Responsive adjustments for privacy policy */
@media (max-width: 768px) {
    .privacy-policy-container {
        margin: 100px auto 40px;
        padding: 0 15px;
    }

    .privacy-policy-container h1 {
        font-size: 2rem;
    }

    .privacy-policy-container h2 {
        font-size: 1.5rem;
    }

    .privacy-policy-container p,
    .privacy-policy-container li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-container {
        margin: 80px auto 30px;
        padding: 0 10px;
    }

    .privacy-policy-container h1 {
        font-size: 1.8rem;
    }

    .privacy-policy-container h2 {
        font-size: 1.3rem;
    }
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-form .form-group {
    flex: 1;
    margin: 0;
}

.contact-form .cta-button {
    width: 100% !important;
    margin: 1rem auto 0 !important;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #be202e 0%, #7e202e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-form .form-group {
        width: 100%;
    }
}

.card-content {
    flex-grow: 1;
}

.pricing-link {
    text-decoration: none;
    color: inherit;
}

.pricing-link:hover .subtitle {
    text-decoration: underline;
}

/* Client section styles */
.our-clients {
    padding: 4rem 2rem;
    text-align: center;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo i {
    font-size: 2rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.client-logo span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Social icons */
.social-icon {
    margin-left: 5px;
    font-size: 1.2em;
    color: inherit;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #2d3748;
}

.social-links {
    display: inline-block;
    margin-top: 15px;
}

@media (max-width: 950px) {
    .social-links {
        display: none;
    }
}

.footer-section .social-links a {
    margin-right: 15px;
}

.social-links a {
    color: #a0a0a0;
    font-size: 1.5em;
    margin-right: 0px;
    margin-left: 0px;
    transition: color 0.3s ease;
}



/* Latest posts section */
.latest-posts {
    padding: 4rem 2rem;
    text-align: center;
    background: #f8f9fa;
}

.posts-container {
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
}

@media (max-width: 640px) {
    .posts-container iframe {
        height: 500px;
    }
} 
.blog-content {
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.1rem;
}
.blog_post_image {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; 
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 8px;
}

.checkbox-label span {
    font-size: 14px;
    color: #666;
}

.privacy-link {
    color: #202020;
    text-decoration: none;
    transition: color 0.3s ease;
    vertical-align: middle;
}

.privacy-link:hover {
    color: #000000;
    text-decoration: underline;
}

.contact-form .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(190, 32, 46, 0.4);
    background: linear-gradient(135deg, #be202e 0%, #be202e  100%);
}

/* Desktop styles */
@media (min-width: 768px) {
    .contact-form .form-row {
        max-width: 400px;  /* 2x width */
    }
}

/* You're in Good Hands Section */
.good-hands-section {
    padding: 4rem 10%;
    background-color: #f8f9fa;
}

.good-hands-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #082b45;
    margin-bottom: 2rem;
}

.good-hands-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.good-hands-image {
    flex: 1;
}

.company-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.good-hands-text {
    flex: 1;
}

.good-hands-text h3 {
    font-size: 1.8rem;
    color: #082b45;
    margin-bottom: 1.5rem;
}

.good-hands-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #be202e;
    font-weight: bold;
}

@media (max-width: 768px) {
    .good-hands-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .good-hands-image {
        order: 2;
    }
    
    .good-hands-text {
        order: 1;
    }
    
    .good-hands-section {
        padding: 3rem 5%;
    }
}

/* Blog Grid and Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content h2 {
    font-size: 1.5rem;
    color: #082b45;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #be202e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #a11b27;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card-image {
        height: 180px;
    }
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #be202e;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-section {
        min-width: 100%;
        text-align: center;
    }
    
    .footer-section h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Service Icons Styles */
.service-icon {
    color: #bf202f;
    margin-right: 8px;
    font-size: 24px;
}

@media (max-width: 768px) {
    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-section h3:after {
        width: 50px;
    }
} 