
    .galaxy-product-page {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background-color: #fff;
    }
    .hero-section {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        padding: 60px 40px;
        border-radius: 20px;
        text-align: center;
        margin-bottom: 40px;
    }
    .hero-section h1 {
        font-size: 2.5em;
        color: #1a3a5f;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    .hero-tagline {
        font-size: 1.2em;
        color: #4a6a8a;
        max-width: 700px;
        margin: 0 auto;
    }
    .section-title {
        text-align: center;
        color: #1a3a5f;
        margin: 50px 0 30px;
        font-size: 2em;
        position: relative;
    }
    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: #3498db;
        margin: 10px auto;
    }
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }
    .feature-card {
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        border: 1px solid #eaeaea;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }
    .feature-card:hover {
        transform: translateY(-5px);
        border-color: #3498db;
    }
    .feature-card h3 {
        color: #3498db;
        margin-top: 0;
    }
    .highlight-box {
        background: #f0f7ff;
        border-left: 5px solid #3498db;
        padding: 25px;
        border-radius: 0 15px 15px 0;
        margin: 30px 0;
    }
    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    .comparison-table th {
        background-color: #1a3a5f;
        color: white;
        padding: 15px;
        text-align: left;
    }
    .comparison-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    .faq-item {
        margin-bottom: 20px;
        background: #f9f9f9;
        padding: 20px;
        border-radius: 10px;
    }
    .faq-item strong {
        color: #1a3a5f;
        display: block;
        margin-bottom: 8px;
        font-size: 1.1em;
    }
    .cta-button {
        display: inline-block;
        background: #e67e22;
        color: white;
        padding: 15px 40px;
        text-decoration: none;
        border-radius: 30px;
        font-weight: bold;
        margin-top: 20px;
        transition: background 0.3s ease;
    }
    .cta-button:hover {
        background: #d35400;
    }
    @media (max-width: 768px) {
        .hero-section h1 { font-size: 1.8em; }
        .feature-grid { grid-template-columns: 1fr; }
    }
