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

body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.hero-section {
    position: relative;
    min-height: 40vh;
    background: linear-gradient(45deg, #000, #ff0000);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    margin-left: calc(280px + (100% - 280px - 1200px) / 2);
}

.hero-content {
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.author-section {
    margin-top: 4rem;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.written-by {
    text-transform: uppercase;
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #ff0000;
}

.author-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    opacity: 0.7;
}

.share-section {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.share-button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.share-button:hover {
    opacity: 1;
}

/* content section */
.content-section {
    max-width: 1250px;
    margin: 4rem auto;
    padding: 0 2rem;
    width: calc(100% - 280px); 
    margin-left: 280px; 
}

/* Rest of your existing styles */
.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.key-insight {
    border-left: 4px solid #ff0000;
    padding: 2rem;
    margin: 3rem 0;
    background: rgba(255, 0, 0, 0.1);
}

.key-insight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.key-insight p {
    font-size: 1.125rem;
    margin: 0;
}

/* Content quote styling */
.content-quote {
    font-size: 1.75rem;
    line-height: 1.4;
    padding: 3rem 2rem; 
    text-align: center;
    font-style: italic;
    position: relative;
    margin: 2rem 0;
}

.content-quote::before,
.content-quote::after {
    content: '"';
    font-size: 4rem;
    color: #ff0000;
    position: absolute;
    opacity: 0.5;
}

.content-quote::before {
    top: 1rem;
    left: 0;
}

.content-quote::after {
    bottom: 1rem;
    right: 0;
}

/* Media queries for responsive quote */
@media screen and (max-width: 768px) {
    .content-section {
        width: 100%;
        margin-left: 0;
        padding: 0 1rem;
    }
    
    .content-quote {
        font-size: 1.5rem;
        padding: 2.5rem 1.5rem;
    }
    
    .content-quote::before,
    .content-quote::after {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .content-quote {
        font-size: 1.25rem;
        padding: 2rem 1rem;
    }
    
    .content-quote::before,
    .content-quote::after {
        font-size: 2.5rem;
    }
}

/* Media queries for tablet and mobile */
@media (max-width: 1480px) {
    .content-section {
        margin: 4rem 0 4rem 280px; 
    }
    
    .content-wrapper {
        margin: 0 0 0 280px; 
    }
}

@media (max-width: 768px) {
    .content-section {
        margin: 4rem auto; 
        padding: 0 1.5rem;
        width: 100%;
    }

    .content-wrapper {
        margin: 0 auto; 
        padding: 0 1.5rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .key-insight {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .key-insight h3 {
        font-size: 1.25rem;
    }
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-section {
        padding: 3rem 1.5rem;
    }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .mobile-only {
        display: inline-flex; 
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none; 
    }
}

/* Media query for larger screens to center the content */
@media screen and (min-width: 1530px) { 
    .content-section {
        margin-left: calc(280px + (100% - 1530px) / 2);
    }
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .content-section {
        width: 100%;
        margin-left: 0;
        padding: 0 1rem;
    }
}

/* privacy policy */

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    color: #333;
    line-height: 1.6;
}

.privacy-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.privacy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.privacy-header .effective-date {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.privacy-section h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 2rem 0 1rem;
}

.privacy-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.privacy-section ul, 
.privacy-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

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

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 4px 4px 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: #3498db;
}

.contact-info {
    background-color: #f5f7fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 1rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

/* ===== Design Showcase Section ===== */
.design-showcase {
    display: flex;
    overflow-x: auto;
    gap: 2.5rem;
    padding: 3rem 0;
    scroll-behavior: smooth;
}

.design-item {
    flex: 0 0 auto;
    width: 320px;
    background: #0a0a0a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.design-item:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 15px 40px rgba(255,0,0,0.2);
}

.design-image {
    padding: 25px;
    background: linear-gradient(45deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
}

.design-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: #ff0000;
    opacity: 0.3;
}

.design-image img {
    width: auto;
    height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.design-info {
    padding: 1.8rem;
}

/* ===== Typography ===== */
.design-title {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 20px;
}

.design-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
}

.design-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===== Figma Button ===== */
.figma-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(255,0,0,0.2);
}

.figma-button i {
    font-size: 1.2rem;
}

.figma-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,0,0,0.3);
    background: linear-gradient(135deg, #ff1a1a 0%, #dd0000 100%);
}


/* ===== Scrollbar Styling ===== */
.design-showcase::-webkit-scrollbar {
    height: 8px;
}

.design-showcase::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}

.design-showcase::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}
/* Gradient overlay for scroll hint */
.design-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
    .design-item {
        width: 280px;
    }
    
    .design-image img {
        height: 320px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .figma-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* ===== Content Section Spacing ===== */
.content-section {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.key-insight {
    background: rgba(255,0,0,0.05);
    border-left: 4px solid #ff0000;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}
/* Add centering style for images */
.design-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

/* Add to blog.css */
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.detail-button {
    background: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

/* Add to blog.css */
.dashboard-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.dashboard-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.design-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.store-button {
    background: #f8f9fa;
    color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.message-section {
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}
