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

body {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    line-height: 1.6;
    color: #00ff00;
    background: #0a0a0a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Matrix tarzı arka plan */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(0,255,0,0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0,255,0,0.1) 100%);
    background-size: 20px 20px;
    animation: matrix 20s linear infinite;
    z-index: -1;
    overflow: hidden;
}

@keyframes matrix {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

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

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 8px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
}

header {
    text-align: center;
    padding: 80px 0;
    color: #00ff00;
    position: relative;
    overflow: hidden;
}

/* Header arka plan animasyonu */
header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,0,0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0,255,0,0.8);
    color: #00ff00;
    font-weight: bold;
    letter-spacing: 2px;
    animation: glitch 3s ease-in-out infinite;
}

@keyframes glitch {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(0,255,0,0.8);
        transform: translateX(0);
    }
    25% { 
        text-shadow: 2px 0 20px rgba(255,0,0,0.8), -2px 0 20px rgba(0,0,255,0.8);
        transform: translateX(2px);
    }
    50% { 
        text-shadow: -2px 0 20px rgba(255,0,0,0.8), 2px 0 20px rgba(0,0,255,0.8);
        transform: translateX(-2px);
    }
    75% { 
        text-shadow: 2px 0 20px rgba(255,0,0,0.8), -2px 0 20px rgba(0,0,255,0.8);
        transform: translateX(1px);
    }
}

.avatar-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #00ff00;
    box-shadow: 0 0 30px rgba(0,255,0,0.5);
    animation: pulse 2s ease-in-out infinite;
    image-rendering: pixelated;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(0,255,0,0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 50px rgba(0,255,0,0.8);
        transform: scale(1.05);
    }
}

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

.stats-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stats-preview span {
    background: rgba(0,255,0,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(0,255,0,0.3);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

.stats-preview span:nth-child(1) { animation-delay: 0.2s; }
.stats-preview span:nth-child(2) { animation-delay: 0.4s; }
.stats-preview span:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.main-content {
    background: rgba(20,20,20,0.95);
    border: 2px solid #00ff00;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 0 30px rgba(0,255,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: #00ff00;
    margin-bottom: 20px;
    font-size: 2rem;
    border-bottom: 3px solid #00ff00;
    padding-bottom: 10px;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

.product {
    background: rgba(30,30,30,0.9);
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    border: 2px solid #333;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0,255,0,0.2);
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid #00ff00;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 20px rgba(0,255,0,0.5);
}

.product:hover::before {
    opacity: 1;
}

/* Featured Product Styling */
.featured-product {
    border: 2px solid #00ff00;
    box-shadow: 0 0 30px rgba(0,255,0,0.4);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Premium Product Styling */
.premium-product {
    border-color: #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.2);
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05), rgba(103, 58, 183, 0.05));
}

.premium-badge {
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.premium-button {
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    border-color: #9c27b0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
}

.premium-button:hover {
    background: linear-gradient(45deg, #673ab7, #9c27b0);
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.5);
}

/* Pricing Breakdown Styling */
.pricing-breakdown {
    margin: 20px 0;
    padding: 20px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.pricing-breakdown h4 {
    color: #9c27b0;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
}

.pricing-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* Responsive adjustments for pricing breakdown grid */
@media (max-width: 768px) {
    .pricing-breakdown-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .breakdown-item {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .pricing-breakdown-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .breakdown-item {
        padding: 10px;
    }
    
    .breakdown-title {
        font-size: 13px;
    }
    
    .breakdown-price {
        font-size: 18px;
    }
    
    .breakdown-desc {
        font-size: 10px;
    }
}

.breakdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    transform: translateY(-3px);
    background: rgba(156, 39, 176, 0.1);
    border-color: #9c27b0;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
}

.breakdown-title {
    color: #9c27b0;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
}

.breakdown-price {
    color: #00ff00;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.breakdown-desc {
    color: #ccc;
    font-size: 11px;
    text-align: center;
    line-height: 1.3;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(156, 39, 176, 0.2);
    border-radius: 10px;
    border: 2px solid #9c27b0;
    margin-top: 15px;
}

.total-label {
    color: #9c27b0;
    font-weight: bold;
    font-size: 16px;
}

.total-amount {
    color: #00ff00;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* Features List Styling */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
}

.features-list span {
    color: #00ff00;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0,255,0,0.3);
}

/* Featured Button Styling */
.featured-button {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    border-color: #00ff00;
    box-shadow: 0 0 25px rgba(0,255,0,0.4);
}

.featured-button:hover {
    background: linear-gradient(45deg, #00cc00, #009900);
    box-shadow: 0 0 35px rgba(0,255,0,0.6);
}

/* Premium Button Styling */
.premium-button {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    border-color: #ffd700;
    color: #000;
    box-shadow: 0 0 25px rgba(255,215,0,0.4);
}

.premium-button:hover {
    background: linear-gradient(45deg, #ffb347, #ff8c00);
    box-shadow: 0 0 35px rgba(255,215,0,0.6);
}

/* Personal Site Product Styling */
.personal-site-product {
    border: 2px solid #ff69b4;
    box-shadow: 0 0 30px rgba(255,105,180,0.4);
    position: relative;
}

.personal-site-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Pricing Options Styling */
.pricing-options {
    margin: 25px 0;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    border: 1px solid rgba(255,105,180,0.2);
}

.pricing-options h4 {
    color: #ff69b4;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255,105,180,0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

/* Responsive adjustments for pricing grid */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .pricing-item {
        padding: 12px;
    }
}

.pricing-item {
    background: rgba(255,105,180,0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,105,180,0.3);
}

.pricing-title {
    display: block;
    color: #ff69b4;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1rem;
}

.pricing-price {
    display: block;
    color: #00ff00;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.pricing-desc {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Theme Selection Styling */
.theme-selection {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,105,180,0.2);
}

.theme-selection h4 {
    color: #ff69b4;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255,105,180,0.3);
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* Responsive adjustments for theme grid */
@media (max-width: 768px) {
    .theme-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .theme-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .theme-preview {
        width: 70px;
        height: 50px;
    }
}

.theme-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.theme-item:hover {
    transform: scale(1.05);
}

.theme-preview {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    margin: 0 auto 10px;
    border: 2px solid rgba(255,105,180,0.3);
    transition: all 0.3s ease;
}

.theme-preview:hover {
    border-color: #ff69b4;
    box-shadow: 0 0 15px rgba(255,105,180,0.4);
}

.hacker-theme {
    background: linear-gradient(135deg, #0a0a0a 0%, #333 50%, #00ff00 100%);
}

.modern-theme {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #007bff 100%);
}

.creative-theme {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
}

.custom-theme {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-icon {
    font-size: 1.5rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.custom-theme-item {
    position: relative;
}

.custom-note {
    display: block;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0,255,0,0.3);
    animation: pulse 2s ease-in-out infinite;
}

.theme-name {
    display: block;
    color: #ff69b4;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.theme-desc {
    display: block;
    color: #ccc;
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.3;
}

/* Personal Site Button Styling */
.personal-site-button {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border-color: #ff69b4;
    color: white;
    box-shadow: 0 0 25px rgba(255,105,180,0.4);
}

.personal-site-button:hover {
    background: linear-gradient(45deg, #ff1493, #c71585);
    box-shadow: 0 0 35px rgba(255,105,180,0.6);
}

/* Mobile responsive for pricing and themes */
@media (max-width: 600px) {
    .pricing-grid,
    .theme-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-item,
    .theme-item {
        margin-bottom: 15px;
    }
}

.custom-theme-info {
    background: rgba(0,255,0,0.1);
    border: 1px solid rgba(0,255,0,0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.custom-theme-info p {
    color: #00ff00;
    margin: 0;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0,255,0,0.3);
}

.custom-theme-info strong {
    color: #00ff00;
    font-weight: bold;
}

/* Website Examples Styling */
.website-examples {
    margin: 25px 0;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    border: 1px solid rgba(0,255,0,0.2);
}

.website-examples h4 {
    color: #00ff00;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0,255,0,0.3);
}

/* Slider Styling */
.slider-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid rgba(0,255,0,0.3);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: #00ff00;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border-radius: 0 0 15px 15px;
    text-shadow: 0 0 5px rgba(0,255,0,0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,255,0,0.2);
    color: #00ff00;
    border: 2px solid #00ff00;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0,255,0,0.4);
    box-shadow: 0 0 15px rgba(0,255,0,0.6);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,255,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0,255,0,0.5);
}

/* Example Grid Styling */
.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.example-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0,255,0,0.3);
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,255,0,0.3);
    border-color: #00ff00;
}

.example-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.example-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.example-item:hover .example-overlay {
    opacity: 1;
}

.example-overlay span {
    color: #00ff00;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

/* Responsive adjustments for example grid */
@media (max-width: 768px) {
    .example-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .example-image {
        height: 120px;
    }
    
    .example-overlay span {
        padding: 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .example-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .example-image {
        height: 100px;
    }
    
    .example-overlay span {
        padding: 8px;
        font-size: 0.7rem;
    }
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    margin-top: 5vh;
    text-align: center;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #00ff00;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

.close:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(0,255,0,0.8);
}

#modalImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    border: 2px solid rgba(0,255,0,0.5);
    box-shadow: 0 0 30px rgba(0,255,0,0.3);
}

#modalCaption {
    color: #00ff00;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

/* Cybersecurity Product Styling */
.cybersecurity-product {
    border: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0,255,255,0.4);
    position: relative;
}

.cybersecurity-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Cybersecurity Button Styling */
.cybersecurity-button {
    background: linear-gradient(45deg, #00ffff, #00ccff);
    border-color: #00ffff;
    color: #000;
    box-shadow: 0 0 25px rgba(0,255,255,0.4);
}

.cybersecurity-button:hover {
    background: linear-gradient(45deg, #00ccff, #0099ff);
    box-shadow: 0 0 35px rgba(0,255,255,0.6);
}

/* Tool Product Styling */
.tool-product {
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.tool-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tool-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.tool-button:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

/* Romantic Product Styling */
.romantic-product {
    border-color: #ff69b4;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.2);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(255, 20, 147, 0.05));
}

.romantic-badge {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

/* Romantic Packages Styling */
.romantic-packages {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.romantic-packages h4 {
    color: #ff69b4;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive adjustments for package grid */
@media (max-width: 1200px) {
    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .package-item {
        padding: 15px;
    }
    
    .featured-package {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .package-grid {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .package-item {
        padding: 12px;
    }
    
    .package-name {
        font-size: 18px;
    }
    
    .package-features span {
        font-size: 12px;
    }
}

.package-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.basic-package {
    border-color: #ff69b4;
}

.standard-package {
    border-color: #ff1493;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.1));
}

.premium-package {
    border-color: #c71585;
}

.featured-package {
    position: relative;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 10;
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 105, 180, 0.3);
}

.package-name {
    display: block;
    color: #ff69b4;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.package-price {
    display: block;
    color: #00ff00;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.package-features {
    margin-bottom: 20px;
}

.package-features span {
    display: block;
    color: #ccc;
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 5px;
}

.package-features span::before {
    content: "✓ ";
    color: #00ff00;
    margin-right: 8px;
    font-weight: bold;
}

/* Romantic Package Buttons */
.basic-romantic {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border-color: #ff69b4;
    width: 100%;
}

.standard-romantic {
    background: linear-gradient(45deg, #ff1493, #c71585);
    border-color: #ff1493;
    width: 100%;
}

.premium-romantic {
    background: linear-gradient(45deg, #c71585, #8b008b);
    border-color: #c71585;
    width: 100%;
}

.romantic-features {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.romantic-features h4 {
    color: #ff69b4;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.romantic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.romantic-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.romantic-feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 105, 180, 0.1);
    border-color: #ff69b4;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.romantic-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.romantic-text {
    color: #ff69b4;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}

.romantic-button {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border-color: #ff69b4;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    font-size: 16px;
    padding: 12px 24px;
}

.romantic-button:hover {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
    transform: translateY(-2px);
}

.product:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product h3 {
    color: #00ff00;
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(0,255,0,0.3);
}

.price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #00ff00;
    margin: 15px 0;
    opacity: 0.8;
    text-align: center;
    padding: 8px 16px;
    background: rgba(0,255,0,0.1);
    border-radius: 20px;
    border: 1px solid rgba(0,255,0,0.2);
}

.buy-button {
    background: #000;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,255,0,0.3);
    font-family: 'Courier New', monospace;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    background: #00ff00;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0,255,0,0.6);
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.instagram-link {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
    transition: transform 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.05);
}

.github-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #24292e;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 2px solid #24292e;
}

.github-link:hover {
    transform: scale(1.05);
    background: #000;
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0,255,0,0.4);
}

.github-icon {
    width: 24px;
    height: 24px;
}

.telegram-link {
    display: inline-block;
    background: #0088cc;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 2px solid #0088cc;
}

.telegram-link:hover {
    transform: scale(1.05);
    background: #0077b3;
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0,255,0,0.4);
}

.email-link {
    display: inline-block;
    background: #ea4335;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 2px solid #ea4335;
}

.email-link:hover {
    transform: scale(1.05);
    background: #d33426;
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0,255,0,0.4);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0,255,0,0.1);
    border: 2px solid rgba(0,255,0,0.3);
    border-radius: 25px;
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 120px;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 1;
}

.social-link:hover {
    background: rgba(0,255,0,0.2);
    border-color: #00ff00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,255,0,0.3);
}

.social-icon {
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments for social links */
@media (max-width: 768px) {
    .social-links {
        gap: 6px;
        margin: 15px 0;
        flex-wrap: nowrap !important;
    }
    
    .social-link {
        padding: 6px 10px;
        min-width: 70px;
        font-size: 0.75rem;
    }
    
    .social-icon {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .social-links {
        gap: 4px;
        margin: 12px 0;
        flex-wrap: nowrap !important;
    }
    
    .social-link {
        padding: 5px 8px;
        min-width: 60px;
        font-size: 0.7rem;
    }
    
    .social-icon {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 3px;
        margin: 10px 0;
        flex-wrap: nowrap !important;
    }
    
    .social-link {
        padding: 4px 6px;
        min-width: 50px;
        font-size: 0.65rem;
    }
    
    .social-icon {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .social-links {
        gap: 2px;
        margin: 8px 0;
        flex-wrap: nowrap !important;
    }
    
    .social-link {
        padding: 3px 5px;
        min-width: 45px;
        font-size: 0.6rem;
    }
    
    .social-icon {
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .social-links {
        gap: 1px;
        margin: 6px 0;
        flex-wrap: nowrap !important;
    }
    
    .social-link {
        padding: 2px 4px;
        min-width: 40px;
        font-size: 0.55rem;
    }
    
    .social-icon {
        font-size: 0.65rem;
    }
}

.contact-info {
    background: rgba(30,30,30,0.9);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,255,0,0.2);
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: white;
    opacity: 0.8;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 10px;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Hero Content Styling */
.hero-content {
    text-align: center;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0,255,0,0.5);
}

.highlight {
    color: #00ff00;
    text-shadow: 0 0 15px rgba(0,255,0,0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(0,255,0,0.1);
    border-radius: 15px;
    border: 1px solid rgba(0,255,0,0.3);
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 15px rgba(0,255,0,0.5);
    margin-bottom: 5px;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.hero-cta {
    margin: 30px 0;
}

.cta-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.cta-button {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,255,0,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0,255,0,0.5);
}

/* Social Links Styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 25px;
    text-decoration: none;
    color: #ccc;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 5px 15px rgba(0,255,0,0.2);
}

.social-icon {
    font-size: 1.2rem;
}

.github-link:hover {
    color: #00ff00;
    border-color: #00ff00;
}

.telegram-link:hover {
    color: #00ff00;
    border-color: #00ff00;
}

.email-link:hover {
    color: #00ff00;
    border-color: #00ff00;
}

/* Services Intro Styling */
.services-intro {
    background: linear-gradient(135deg, rgba(0,255,0,0.05), rgba(0,200,0,0.05));
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 20px;
    border: 1px solid rgba(0,255,0,0.2);
    text-align: center;
}

.intro-content h2 {
    color: #00ff00;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0,255,0,0.3);
}

.intro-text {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(0,255,0,0.1);
    border-radius: 15px;
    border: 1px solid rgba(0,255,0,0.3);
}

.feature-icon {
    font-size: 1.5rem;
}

.intro-feature span:last-child {
    color: #00ff00;
    font-weight: bold;
}

/* Products Grid Styling */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 2px solid;
    transition: all 0.3s ease;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,255,0,0.2);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-price {
    color: #00ff00;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

/* Responsive adjustments for products grid */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }
    
    .product {
        padding: 20px;
        border-radius: 15px;
    }
    
    .product-header {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 15px;
        margin: 15px 0;
    }
    
    .product {
        padding: 15px;
        border-radius: 12px;
    }
}

/* Testimonials Section Styling */
.testimonials-section {
    background: linear-gradient(135deg, rgba(0,255,0,0.05), rgba(0,200,0,0.05));
    padding: 60px 20px;
    margin: 60px 0;
    border-radius: 20px;
    border: 1px solid rgba(0,255,0,0.2);
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-content h2 {
    color: #00ff00;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0,255,0,0.3);
}

.testimonials-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

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

.testimonial-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0,255,0,0.2);
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,255,0,0.2);
}

.testimonial-content p {
    color: #ccc;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 2rem;
    background: rgba(0,255,0,0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #00ff00;
    font-weight: bold;
    font-size: 1rem;
}

.author-title {
    color: #999;
    font-size: 0.9rem;
}

/* CTA Section Styling */
.cta-section {
    background: linear-gradient(135deg, rgba(0,255,0,0.1), rgba(0,200,0,0.1));
    padding: 60px 20px;
    margin: 60px 0;
    border-radius: 20px;
    border: 2px solid rgba(0,255,0,0.3);
    text-align: center;
}

.cta-content h2 {
    color: #00ff00;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0,255,0,0.3);
}

.cta-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.secondary {
    background: transparent;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0,255,0,0.5);
}

.cta-button.secondary:hover {
    background: #00ff00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0,255,0,0.5);
}

/* Footer Styling */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #00ff00;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0,255,0,0.3);
}

.footer-section h4 {
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0,255,0,0.3);
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff00;
}

.contact-info p {
    margin-bottom: 8px;
}

.social-links-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0,255,0,0.1);
    border-radius: 50%;
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,255,0,0.3);
}

.social-link-footer:hover {
    background: rgba(0,255,0,0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,255,0,0.3);
}

.social-icon-footer {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(0,255,0,0.2);
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Styling */
.faq-section {
    background: linear-gradient(135deg, rgba(0,255,0,0.05), rgba(0,200,0,0.05));
    padding: 80px 20px;
    margin: 80px 0;
    border-radius: 20px;
    border: 1px solid rgba(0,255,0,0.2);
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.faq-content h2 {
    color: #00ff00;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0,255,0,0.3);
}

.faq-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-grid {
        gap: 15px;
        margin-top: 30px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px 25px;
    }
}

@media (max-width: 480px) {
    .faq-grid {
        gap: 12px;
        margin-top: 25px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 15px 20px;
    }
    
    .faq-question span:first-child {
        font-size: 1rem;
    }
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(0,255,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00ff00;
    box-shadow: 0 5px 20px rgba(0,255,0,0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0,255,0,0.05);
}

.faq-question:hover {
    background: rgba(0,255,0,0.1);
}

.faq-question span:first-child {
    color: #00ff00;
    font-weight: bold;
    font-size: 1.1rem;
}

.faq-icon {
    color: #00ff00;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255,255,255,0.02);
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
    padding: 0 30px 25px 30px;
    margin: 0;
}

/* Enhanced Testimonials Styling */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,255,0,0.2);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-item::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(0,255,0,0.1);
    font-family: serif;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,255,0,0.25);
    border-color: #00ff00;
}

.testimonial-content p {
    color: #ccc;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    font-size: 2.2rem;
    background: linear-gradient(135deg, rgba(0,255,0,0.1), rgba(0,200,0,0.1));
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0,255,0,0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #00ff00;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-title {
    color: #999;
    font-size: 0.95rem;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0,255,0,0.15), rgba(0,200,0,0.15));
    padding: 80px 20px;
    margin: 80px 0;
    border-radius: 25px;
    border: 3px solid rgba(0,255,0,0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #00ff00;
    font-size: 3rem;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0,255,0,0.5);
}

.cta-content p {
    color: #ccc;
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    border: none;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 25px rgba(0,255,0,0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #00ff00;
    border: 3px solid #00ff00;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 25px rgba(0,255,0,0.2);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0,255,0,0.6);
    background: linear-gradient(45deg, #00cc00, #00ff00);
}

.cta-button.secondary:hover {
    background: #00ff00;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0,255,0,0.6);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question span:first-child {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Corporate Product Styling */
.corporate-product {
    border-color: #4169e1;
    box-shadow: 0 0 20px rgba(65, 105, 225, 0.2);
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.05), rgba(100, 149, 237, 0.05));
}

.corporate-badge {
    background: linear-gradient(45deg, #4169e1, #6495ed);
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

/* Corporate Features Styling */
.corporate-features {
    margin: 20px 0;
    padding: 20px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(65, 105, 225, 0.3);
}

.corporate-features h4 {
    color: #4169e1;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(65, 105, 225, 0.3);
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.corporate-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(65, 105, 225, 0.2);
    transition: all 0.3s ease;
}

.corporate-feature:hover {
    transform: translateY(-3px);
    background: rgba(65, 105, 225, 0.1);
    border-color: #4169e1;
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.2);
}

.corporate-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.corporate-text {
    color: #4169e1;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}

/* Corporate Packages Styling */
.corporate-packages {
    margin: 20px 0;
    padding: 20px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(65, 105, 225, 0.3);
}

.corporate-packages h4 {
    color: #4169e1;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(65, 105, 225, 0.3);
}

.corporate-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Responsive adjustments for corporate package grid */
@media (max-width: 1200px) {
    .corporate-package-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .corporate-package-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .corporate-package-item {
        padding: 15px;
    }
    
    .featured-corporate {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .corporate-package-grid {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .corporate-package-item {
        padding: 12px;
    }
    
    .corporate-package-name {
        font-size: 18px;
    }
    
    .corporate-package-features span {
        font-size: 12px;
    }
}

.corporate-package-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(65, 105, 225, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.corporate-package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.3);
}

.basic-corporate {
    border-color: #4169e1;
}

.standard-corporate {
    border-color: #6495ed;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(100, 149, 237, 0.1));
}

.premium-corporate {
    border-color: #1e90ff;
}

.featured-corporate {
    position: relative;
    transform: scale(1.05);
}

.corporate-package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 10;
}

.corporate-package-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(65, 105, 225, 0.3);
}

.corporate-package-name {
    display: block;
    color: #4169e1;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(65, 105, 225, 0.3);
}

.corporate-package-price {
    display: block;
    color: #00ff00;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.corporate-package-features {
    margin-bottom: 20px;
}

.corporate-package-features span {
    display: block;
    color: #ccc;
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 5px;
}

.corporate-package-features span:before {
    content: "✓ ";
    color: #00ff00;
    margin-right: 8px;
    font-weight: bold;
}

/* Corporate Package Buttons */
.basic-corporate-btn {
    background: linear-gradient(45deg, #4169e1, #6495ed);
    border-color: #4169e1;
    width: 100%;
}

.standard-corporate-btn {
    background: linear-gradient(45deg, #6495ed, #1e90ff);
    border-color: #6495ed;
    width: 100%;
}

.premium-corporate-btn {
    background: linear-gradient(45deg, #1e90ff, #00bfff);
    border-color: #1e90ff;
    width: 100%;
}

.corporate-button {
    background: linear-gradient(45deg, #4169e1, #6495ed);
    border-color: #4169e1;
    box-shadow: 0 0 20px rgba(65, 105, 225, 0.3);
    font-size: 16px;
    padding: 12px 24px;
}

.corporate-button:hover {
    background: linear-gradient(45deg, #6495ed, #4169e1);
    box-shadow: 0 0 30px rgba(65, 105, 225, 0.5);
    transform: translateY(-2px);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        gap: 15px;
        margin-top: 25px;
    }
    
    .testimonial-item {
        padding: 15px;
    }
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        padding: 30px 15px;
    }
    
    .social-links-footer {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 10px;
    }
    
    .social-links-footer {
        gap: 10px;
    }
    
    .social-link-footer {
        width: 35px;
        height: 35px;
    }
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.intro-stat {
    text-align: center;
    padding: 20px;
    background: rgba(0,255,0,0.1);
    border-radius: 15px;
    border: 1px solid rgba(0,255,0,0.3);
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 15px rgba(0,255,0,0.5);
    margin-bottom: 5px;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(0,255,0,0.1);
    border-radius: 15px;
    border: 1px solid rgba(0,255,0,0.3);
}

.feature-icon {
    font-size: 1.5rem;
}

.intro-feature span:last-child {
    color: #00ff00;
    font-weight: bold;
}

/* Responsive adjustments for intro sections */
@media (max-width: 1200px) {
    .intro-stats {
        gap: 30px;
    }
    
    .intro-features {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .intro-stats {
        gap: 20px;
        margin: 20px 0;
    }
    
    .intro-stat {
        padding: 15px;
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .intro-features {
        gap: 20px;
    }
    
    .intro-feature {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .intro-stats {
        gap: 15px;
        margin: 15px 0;
    }
    
    .intro-stat {
        padding: 12px;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .intro-features {
        gap: 15px;
    }
    
    .intro-feature {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Comprehensive Responsive Breakpoints for All Elements */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
    }
    
    .intro-stats {
        gap: 50px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 25px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
}

/* Tablet Large (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 100%;
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    
    .intro-stats {
        gap: 35px;
    }
    
    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .intro-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .corporate-package-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .theme-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .container {
        padding: 12px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 18px 0;
    }
    
    .product {
        padding: 18px;
        border-radius: 15px;
    }
    
    .intro-stats {
        gap: 20px;
        margin: 18px 0;
    }
    
    .intro-stat {
        padding: 15px;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .corporate-package-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .theme-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .faq-grid {
        gap: 15px;
    }
    
    .example-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .example-image {
        height: 120px;
    }
}

/* Mobile Medium (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .products-grid {
        gap: 15px;
        margin: 15px 0;
    }
    
    .product {
        padding: 15px;
        border-radius: 12px;
    }
    
    .intro-stats {
        gap: 15px;
        margin: 15px 0;
    }
    
    .intro-stat {
        padding: 12px;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .intro-features {
        gap: 15px;
    }
    
    .intro-feature {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .package-grid {
        gap: 12px;
    }
    
    .corporate-package-grid {
        gap: 12px;
    }
    
    .pricing-grid {
        gap: 8px;
    }
    
    .theme-grid {
        gap: 8px;
    }
    
    .testimonials-grid {
        gap: 15px;
    }
    
    .faq-grid {
        gap: 12px;
    }
    
    .example-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .example-image {
        height: 100px;
    }
}

/* Mobile Small (400px - 479px) */
@media (max-width: 479px) and (min-width: 400px) {
    .container {
        padding: 8px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .products-grid {
        gap: 12px;
        margin: 12px 0;
    }
    
    .product {
        padding: 12px;
        border-radius: 10px;
    }
    
    .intro-stats {
        gap: 12px;
        margin: 12px 0;
    }
    
    .intro-stat {
        padding: 10px;
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .intro-features {
        gap: 12px;
    }
    
    .intro-feature {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .package-grid {
        gap: 10px;
    }
    
    .corporate-package-grid {
        gap: 10px;
    }
    
    .pricing-grid {
        gap: 6px;
    }
    
    .theme-grid {
        gap: 6px;
    }
    
    .testimonials-grid {
        gap: 12px;
    }
    
    .faq-grid {
        gap: 10px;
    }
    
    .example-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 8px;
    }
    
    .example-image {
        height: 90px;
    }
}

/* Mobile Extra Small (320px - 399px) */
@media (max-width: 399px) {
    .container {
        padding: 6px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-description {
        font-size: 0.75rem;
    }
    
    .products-grid {
        gap: 10px;
        margin: 10px 0;
    }
    
    .product {
        padding: 10px;
        border-radius: 8px;
    }
    
    .intro-stats {
        gap: 10px;
        margin: 10px 0;
    }
    
    .intro-stat {
        padding: 8px;
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .intro-features {
        gap: 10px;
    }
    
    .intro-feature {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .package-grid {
        gap: 8px;
    }
    
    .corporate-package-grid {
        gap: 8px;
    }
    
    .pricing-grid {
        gap: 5px;
    }
    
    .theme-grid {
        gap: 5px;
    }
    
    .testimonials-grid {
        gap: 10px;
    }
    
    .faq-grid {
        gap: 8px;
    }
    
    .example-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 6px;
    }
    
    .example-image {
        height: 80px;
    }
    
    .pricing-breakdown-grid {
        gap: 8px;
    }
    
    .breakdown-item {
        padding: 8px;
    }
    
    .breakdown-title {
        font-size: 12px;
    }
    
    .breakdown-price {
        font-size: 16px;
    }
    
    .breakdown-desc {
        font-size: 9px;
    }
}
