/* 
   Simple Digital Safety - Main Stylesheet
   A clean, modern design focused on security and approachability
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===== Base Styles ===== */
:root {
    /* Color Palette - Updated per Style Guide */
    --primary-color: #4c63d9;       /* Calm, trustworthy violet-blue */
    --primary-dark: #3b4fb0;        /* Darker shade for hover states */
    --accent-color-1: #7b49e1;      /* Vibrant purple for highlights and borders */
    --accent-color-2: #61bc4c;      /* Fresh green for buttons and confirmations */
    --dark-text: #333333;           /* Near black for main text */
    --medium-text: #666666;         /* Gray for secondary text */
    --light-text: #ffffff;          /* White text for dark backgrounds */
    --background-light: #F9FAFC;    /* Clean, soft white background */
    --background-off: #f0f2f8;      /* Slightly darker off-white for alternating sections */
    --border-color: #e0e4f0;        /* Light border color */
    
    /* Typography */
    --body-font: 'Open Sans', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--background-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--dark-text);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color-1);
    border-radius: var(--border-radius-sm);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--body-font);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 99, 217, 0.3);
}

.btn-secondary {
    background-color: var(--accent-color-2);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: #52a340;
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(97, 188, 76, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 99, 217, 0.2);
}

.btn-youtube {
    background-color: #FF0000;
    color: var(--light-text);
}

.btn-youtube:hover {
    background-color: #CC0000;
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

.btn-small {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9rem;
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1.1rem;
}

/* ===== Header & Navigation ===== */
header {
    background-color: var(--background-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 100px;
    width: auto;
    margin-right: var(--spacing-sm);
}

.site-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #000;
    display: inline-block;
}

.main-nav {
    display: flex;
}

.main-nav li {
    margin-left: var(--spacing-lg);
}

.main-nav a {
    color: var(--dark-text);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color-1);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    text-align: center;
    overflow: hidden;
    color: var(--light-text);
    /* Full viewport height for full-page background */
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-background-large.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    /* Ensure image is visible but not too bright */
    filter: brightness(0.95);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient overlay for better text readability */
    background: linear-gradient(rgba(76, 99, 217, 0.5), rgba(123, 73, 225, 0.6));
}

.hero-content {
    /* Wider content area for better readability */
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: var(--spacing-lg);
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--light-text);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--light-text);
    font-weight: 400;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xl);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

/* ===== About Brief Section ===== */
.about-brief {
    background-color: var(--background-off);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color-1);
    min-width: 50px;
    text-align: center;
}

.feature-text h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.feature-text p {
    margin-bottom: 0;
    color: var(--medium-text);
}

/* ===== Start Here Section ===== */
.start-here-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.start-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--accent-color-1);
}

.start-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(76, 99, 217, 0.15);
}

.start-icon {
    font-size: 2.5rem;
    color: var(--accent-color-1);
    margin-bottom: var(--spacing-md);
}

.start-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.start-card p {
    margin-bottom: var(--spacing-lg);
}

/* ===== Featured Blog Section ===== */
.featured-blog {
    background-color: var(--background-light);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.blog-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--background-light);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(76, 99, 217, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: var(--spacing-lg);
}

.blog-content h3 {
    color: var(--primary-color);
}

.blog-meta {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.view-all-container {
    text-align: center;
}

/* ===== YouTube Section ===== */
.youtube-section {
    background-color: var(--background-off);
}

.video-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.featured-video {
    position: relative;
}

.video-placeholder {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(76, 99, 217, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background-color: var(--accent-color-1);
    transform: translate(-50%, -50%) scale(1.1);
}

.featured-video h3 {
    color: var(--primary-color);
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.video-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    background-color: var(--background-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.video-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--accent-color-1);
}

.video-thumb {
    width: 120px;
    height: 70px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info h4 {
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    color: var(--primary-color);
}

.video-info p {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.youtube-cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color-1));
    color: var(--light-text);
    padding: var(--spacing-xxl) 0;
}

.cta-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.cta-content h2 {
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
}

.cta-features {
    margin: var(--spacing-lg) 0;
}

.cta-features li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
}

.cta-features li i {
    color: var(--accent-color-2);
    margin-right: var(--spacing-sm);
}

.cta-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    background-color: var(--background-off);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-family: var(--body-font);
}

.form-note {
    font-size: 0.9rem;
    color: var(--medium-text);
}

/* ===== Footer ===== */
footer {
    background-color: #2a2d4a;
    color: #ffffff;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-section h3 {
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: #dadce0;
}

.footer-section a:hover {
    color: var(--light-text);
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

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

.social-icons a:hover {
    background-color: var(--accent-color-1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .about-content,
    .cta-section .container,
    .video-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-light);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: var(--spacing-md) 0;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav li {
        margin: 0;
        text-align: center;
    }
    
    .main-nav a {
        display: block;
        padding: var(--spacing-md);
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .youtube-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Blog Page Styles ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color-1));
    color: var(--light-text);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-header h1 {
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
    font-size: 2.5rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-categories {
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.category-filter {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-filter.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.category-filter:not(.active):hover {
    background-color: var(--background-off);
}

.blog-listing {
    padding: var(--spacing-xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-off);
    transition: all 0.3s ease;
}

.page-number.current {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.page-number:not(.current):hover {
    background-color: var(--border-color);
}

.page-number.next {
    width: auto;
    padding: 0 var(--spacing-md);
    border-radius: var(--border-radius-md);
}

/* ===== Blog Post Page Styles ===== */
.blog-post-header {
    background-color: var(--background-off);
    padding: var(--spacing-xl) 0;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
    color: var(--medium-text);
    font-size: 0.9rem;
}

.blog-post-meta .author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-post-meta .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.blog-post-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.blog-post-content h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.blog-post-content h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.blog-post-content ul, 
.blog-post-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
}

.blog-post-content ul li, 
.blog-post-content ol li {
    margin-bottom: var(--spacing-sm);
}

.blog-post-content ul {
    list-style-type: disc;
}

.blog-post-content ol {
    list-style-type: decimal;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--accent-color-1);
    padding-left: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    font-style: italic;
    color: var(--medium-text);
}

.blog-post-content img {
    max-width: 100%;
    border-radius: var(--border-radius-md);
    margin: var(--spacing-lg) 0;
}

.blog-post-content .tip-box {
    background-color: var(--background-off);
    border-left: 4px solid var(--accent-color-2);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.blog-post-content .warning-box {
    background-color: rgba(251, 188, 4, 0.1);
    border-left: 4px solid #fbbc04;
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.blog-post-content .code-box {
    background-color: #2a2d4a;
    color: var(--light-text);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-radius: var(--border-radius-md);
    font-family: monospace;
    overflow-x: auto;
}

.blog-post-share {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.blog-post-share span {
    font-weight: 500;
}

.blog-post-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-off);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.blog-post-share a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.related-posts {
    background-color: var(--background-off);
    padding: var(--spacing-xl) 0;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .category-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
        justify-content: flex-start;
    }
    
    .category-filter {
        white-space: nowrap;
    }
}


/* ===== About Page Styles ===== */
.about-main {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-light);
}

.about-intro {
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    position: relative;
}

.founder-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-paragraph {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: var(--spacing-lg) 0;
    font-family: var(--heading-font);
}

.about-list {
    margin: var(--spacing-lg) 0;
    padding-left: var(--spacing-lg);
}

.about-list li {
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: var(--spacing-md);
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color-1);
    font-weight: bold;
}

.mission-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color-1));
    color: var(--light-text);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent-color-2);
}

.mission-section h2 {
    color: var(--light-text);
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
}

.mission-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.mission-goals {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.mission-goals ul {
    margin: var(--spacing-lg) 0;
}

.mission-goals li {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
}

.mission-goals li i {
    color: var(--accent-color-2);
    margin-right: var(--spacing-md);
    font-size: 1.2rem;
}

.trust-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-off);
}

.trust-content h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: 2.5rem;
    color: var(--primary-color);
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.trust-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.trust-icon {
    font-size: 2rem;
    color: var(--accent-color-1);
    min-width: 50px;
    text-align: center;
}

.trust-text h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.trust-text p {
    color: var(--medium-text);
}

.trust-quote {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    padding: var(--spacing-lg);
    background-color: var(--background-light);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color-1);
}

@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .trust-features {
        grid-template-columns: 1fr;
    }
    
    .mission-goals {
        padding: 0 var(--spacing-lg);
    }
    
    .highlight-text {
        font-size: 1.3rem;
    }
}


/* ===== Password Security Blog Post Specific Styles ===== */
.blog-post {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-light);
}

.blog-post-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: var(--spacing-xl);
}

.blog-featured-image {
    margin-bottom: var(--spacing-lg);
}

.featured-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-categories {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.blog-category {
    background-color: rgba(76, 99, 217, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    color: var(--medium-text);
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
}

.blog-meta i {
    margin-right: var(--spacing-xs);
}

.story-box {
    background-color: rgba(123, 73, 225, 0.05);
    border-left: 4px solid var(--accent-color-1);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0 var(--spacing-lg);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    font-style: italic;
}

.tip-box {
    background-color: var(--background-off);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-box h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
}

.tip-box h3::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: var(--spacing-sm);
    color: var(--accent-color-2);
}

.tip-image {
    margin-top: var(--spacing-md);
}

.tip-img {
    width: 100%;
    border-radius: var(--border-radius-md);
}

.warning-box {
    background-color: rgba(251, 188, 4, 0.1);
    border-left: 4px solid #fbbc04;
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.warning-box h4 {
    color: #d93025;
    margin-bottom: var(--spacing-sm);
}

.warning-box ul {
    padding-left: var(--spacing-lg);
    margin-bottom: 0;
}

.info-box {
    background-color: rgba(76, 99, 217, 0.05);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(76, 99, 217, 0.2);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color-1));
    color: var(--light-text);
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.cta-box h3 {
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

.cta-box p {
    margin-bottom: var(--spacing-md);
}

.next-steps {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.next-steps h3 {
    margin-bottom: var(--spacing-sm);
}

.next-steps ul {
    padding-left: var(--spacing-lg);
}

.next-steps li {
    margin-bottom: var(--spacing-sm);
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background-color: var(--background-off);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
}

.sidebar-widget h3 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.author-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.sidebar-post {
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.sidebar-cta {
    text-align: center;
}

.sidebar-cta p {
    margin-bottom: var(--spacing-md);
}

@media (max-width: 992px) {
    .blog-post-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .blog-meta {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .tip-box {
        padding: var(--spacing-md);
    }
}


/* Additional responsive styles for full-page hero */
@media (max-width: 1200px) {
    .hero {
        height: 90vh;
    }
    
    .hero-content {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-background {
        background-position: 60% center;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    .hero-background {
        background-position: 70% center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-background {
        background-position: 75% center;
    }
}


/* Responsive styles for logo and site name */
@media (max-width: 992px) {
    .logo-img {
        height: 80px;
    }
    
    .site-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 70px;
    }
    
    .site-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 60px;
    }
    
    .site-name {
        display: none; /* Hide site name on very small screens */
    }
}


/* Video Page Styles */
.youtube-channel-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color-1));
    color: var(--light-text);
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.channel-intro h2 {
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
}

.channel-intro p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.channel-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.video-categories {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-off);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.category-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(76, 99, 217, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color-1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.category-icon i {
    font-size: 2rem;
    color: var(--light-text);
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.video-topics {
    text-align: left;
    margin-top: var(--spacing-md);
}

.video-topics li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: var(--spacing-lg);
}

.video-topics li:before {
    content: '▶';
    color: var(--accent-color-2);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.video-topics li:last-child {
    border-bottom: none;
}

.latest-videos {
    padding: var(--spacing-xxl) 0;
}

.video-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.video-placeholder {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(76, 99, 217, 0.15);
}

.placeholder-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, var(--background-off), var(--border-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-lg);
}

.placeholder-thumbnail i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.placeholder-thumbnail p {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin: 0;
}

.video-placeholder h3 {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-sm);
    color: var(--primary-color);
    margin: 0;
}

.video-placeholder p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--medium-text);
    margin: 0;
}

.video-note {
    background: var(--background-off);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    margin-top: var(--spacing-xl);
    text-align: center;
}

.embed-instructions {
    background: var(--background-off);
    padding: var(--spacing-xxl) 0;
}

.instructions-card {
    background: white;
    padding: var(--spacing-xxl);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.instruction-steps {
    display: grid;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.step {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.code-example {
    background: var(--background-off);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    margin-top: var(--spacing-xl);
}

.code-example h4 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.code-example pre {
    background: var(--dark-text);
    color: var(--light-text);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.code-example code {
    color: var(--light-text);
}

/* Video Embed Styles */
.video-embed-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .channel-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .video-placeholder-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto var(--spacing-md);
    }
}



.youtube-cta {
    text-align: center;
}




.channel-actions {
    text-align: center;
}




/* Start Here Page Styles */
.start-here-content {
    padding: 4rem 0;
    background-color: #f9fafc;
}

.start-here-content .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.start-here-content .intro-text h2 {
    color: #4c63d9;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.start-here-content .intro-text p {
    font-size: 1.1rem;
    color: #555;
}

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

.guide-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.guide-card .card-icon {
    font-size: 3.5rem;
    color: #7b49e1;
    margin-bottom: 1.5rem;
}

.guide-card h3 {
    font-size: 1.8rem;
    color: #4c63d9;
    margin-bottom: 1rem;
}

.guide-card p {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.guide-card .checklist-preview {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.guide-card .checklist-preview li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: #444;
}

.guide-card .checklist-preview li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #61bc4c;
}

.guide-card .btn {
    margin-top: auto; /* Pushes the button to the bottom */
    display: inline-block;
    width: auto;
}

@media (max-width: 768px) {
    .start-here-content .intro-text h2 {
        font-size: 2rem;
    }

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

    .guide-card {
        padding: 2rem;
    }

    .guide-card .card-icon {
        font-size: 3rem;
    }

    .guide-card h3 {
        font-size: 1.5rem;
    }
}




/* Shop Page Styles */
.product-highlight-section {
    padding: 4rem 0;
    background-color: #f9fafc;
}

.product-highlight-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.product-image-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    text-align: center;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #61bc4c; /* Green */
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.product-details-wrapper {
    flex: 2;
    min-width: 400px;
}

.product-details-wrapper h2 {
    font-size: 2.8rem;
    color: #4c63d9;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #7b49e1;
    margin-bottom: 1.5rem;
}

.price-info {
    margin-bottom: 1.5rem;
}

.price-info .current-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4c63d9;
    margin-right: 1rem;
}

.price-info .original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 1rem;
}

.price-info .discount-tag {
    background-color: #f0ad4e; /* Orange */
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.product-features-list li {
    font-size: 1.1rem;
    color: #555;
}

.product-features-list li i {
    color: #61bc4c; /* Green checkmark */
    margin-right: 0.5rem;
}

.product-actions .btn {
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 1rem;
}

/* General Section Styling */
.free-resources-section, .premium-products-section, .testimonials-section, .faq-section {
    padding: 4rem 0;
}

.free-resources-section, .testimonials-section {
    background-color: #f9fafc;
}

.premium-products-section, .faq-section {
    background-color: #fff;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0.5rem auto 3rem auto;
    font-size: 1.1rem;
    color: #666;
}

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

.resource-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resource-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.resource-icon-wrapper {
    font-size: 3rem;
    color: #7b49e1;
    margin-bottom: 1rem;
}

.resource-item h3 {
    font-size: 1.6rem;
    color: #4c63d9;
    margin-bottom: 0.8rem;
}

.resource-item p {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.resource-meta-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.resource-type, .resource-cost {
    background-color: #eee;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    color: #555;
}

.resource-cost {
    background-color: #61bc4c;
    color: #fff;
}

/* Premium Products Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.premium-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.premium-item .product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.premium-item h3 {
    font-size: 1.7rem;
    color: #4c63d9;
}

.premium-item .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #7b49e1;
}

.premium-item .product-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.premium-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.premium-features-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.premium-features-list li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #61bc4c;
}

.premium-item .btn {
    width: 100%;
    margin-top: auto;
}

.availability-note {
    font-size: 0.85rem;
    color: #999;
    text-align: center;
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: #f9fafc;
}

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

.testimonial-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #333;
    text-align: right;
}

.testimonial-author span {
    display: block;
    color: #777;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

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

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.faq-item h3 {
    font-size: 1.5rem;
    color: #4c63d9;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-highlight-content {
        flex-direction: column;
        text-align: center;
    }

    .product-details-wrapper {
        min-width: unset;
    }

    .product-features-list {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .product-actions .btn {
        width: auto;
    }
}

@media (max-width: 768px) {
    .product-highlight-content {
        padding: 2rem;
    }

    .product-details-wrapper h2 {
        font-size: 2.2rem;
    }

    .price-info .current-price {
        font-size: 2rem;
    }

    .price-info .original-price {
        font-size: 1.2rem;
    }

    .resources-grid, .premium-grid, .testimonials-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .resource-item, .premium-item, .testimonial-item, .faq-item {
        padding: 1.5rem;
    }

    .resource-item h3, .premium-item h3, .faq-item h3 {
        font-size: 1.4rem;
    }
}




/* Password Checker Page Styles */
.password-checker-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

.password-checker-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.password-checker-intro h2 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.password-checker-intro p {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
}

.security-notice {
    background-color: #e6f7ff;
    border: 1px solid #91d5ff;
    color: #1890ff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.security-notice i {
    margin-right: 10px;
    color: #1890ff;
}

.password-input-wrapper {
    margin-bottom: 30px;
}

.password-input-wrapper label {
    display: block;
    font-size: 1.1em;
    color: var(--color-text-primary);
    margin-bottom: 10px;
    text-align: left;
}

.password-field {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.password-field input {
    flex-grow: 1;
    border: none;
    padding: 12px 15px;
    font-size: 1.1em;
    outline: none;
}

.password-field input:focus {
    border-color: var(--color-primary);
}

.password-toggle {
    background-color: #f0f0f0;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    color: var(--color-text-secondary);
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.password-toggle:hover {
    background-color: #e0e0e0;
}

.strength-meter-wrapper {
    margin-bottom: 20px;
}

.strength-meter {
    background-color: #e0e0e0;
    border-radius: 5px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 5px;
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.strength-bar.very-weak { background-color: #ff4757; }
.strength-bar.weak { background-color: #ff6b35; }
.strength-bar.fair { background-color: #ffa502; }
.strength-bar.good { background-color: #2ed573; }
.strength-bar.excellent { background-color: #26de81; }

.strength-text {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color-text-secondary);
}

.strength-text.very-weak { color: #ff4757; }
.strength-text.weak { color: #ff6b35; }
.strength-text.fair { color: #ffa502; }
.strength-text.good { color: #2ed573; }
.strength-text.excellent { color: #26de81; }

.password-feedback {
    text-align: left;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.password-feedback h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

#feedback-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feedback-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--color-text-primary);
}

.feedback-item i {
    margin-right: 10px;
    font-size: 0.8em;
}

.feedback-item.pending i { color: #ccc; }
.feedback-item.passed i { color: var(--color-green); }
.feedback-item.failed i { color: #ff4757; }

.password-score {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.score-display {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.score-label {
    font-size: 1.2em;
    color: var(--color-text-primary);
    margin-right: 10px;
}

.score-value {
    font-size: 2em;
    font-weight: bold;
    color: var(--color-text-secondary);
}

.score-value.very-weak { color: #ff4757; }
.score-value.weak { color: #ff6b35; }
.score-value.fair { color: #ffa502; }
.score-value.good { color: var(--color-green); }
.score-value.excellent { color: #26de81; }

/* Password Tips Section */
.password-tips-section {
    padding: 60px 0;
    background-color: #f9fafc;
}

.password-tips-section h2 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 40px;
}

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

.tip-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    font-size: 2.5em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.tip-card h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--color-text-secondary);
    font-size: 0.95em;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn {
    margin: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .password-checker-wrapper, .tip-card {
        padding: 25px;
    }

    .security-notice {
        flex-direction: column;
        text-align: center;
    }

    .security-notice i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .password-field input, .password-toggle {
        padding: 10px 12px;
        font-size: 1em;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 80%;
        max-width: 300px;
    }
}




/* Contact Page Styles */
.contact-main-section {
    padding: 60px 0;
    background-color: var(--background-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.contact-info-card, .contact-form-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-card h2, .contact-form-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.contact-info-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-method-item i {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-method-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-method-item p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

.contact-method-item .response-time {
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 600;
}

/* Contact Form Styles */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.contact-form label {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-purple);
    outline: none;
}

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

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

.contact-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.contact-form .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    color: #555;
}

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

.contact-form .form-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
}

.contact-form .form-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form .form-note a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.contact-faq-section {
    padding: 60px 0;
    background-color: #f9fafc;
    text-align: center;
}

.contact-faq-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.contact-faq-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.faq-item-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item-card h3 {
    color: var(--accent-purple);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.faq-item-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


