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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0f0f1a;
    color: #e0e0e0;
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

.dark-mode {
    background: #1a1a2e;
    color: #f0f0f0;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 69, 96, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: #e94560;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

.logo span {
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: #e94560;
}

nav ul li a.active {
    color: #e94560;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e94560;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero h1 span {
    color: #e94560;
}

.hero p {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.hero .btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #e94560, #c23152);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

/* Banner */
.banner {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide .content {
    text-align: center;
    color: #fff;
    z-index: 2;
}

.banner-slide h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.banner-slide p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 25px;
}

.banner-slide .btn {
    display: inline-block;
    padding: 12px 35px;
    background: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: background 0.3s;
}

.banner-slide .btn:hover {
    background: #c23152;
}

.banner-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.banner-dot.active {
    background: #e94560;
}

/* Brand Intro */
.brand-intro {
    padding: 80px 0;
    background: #1a1a2e;
}

.brand-intro h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

.brand-intro h2 span {
    color: #e94560;
}

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

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.brand-card svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.brand-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.brand-card p {
    color: #aaa;
    font-size: 14px;
}

/* Company Intro */
.company-intro {
    padding: 80px 0;
    background: #0f0f1a;
}

.company-intro h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
}

.company-intro p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #aaa;
    font-size: 16px;
    line-height: 1.8;
}

.company-intro .stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 48px;
    font-weight: 900;
    color: #e94560;
}

.stat-item .label {
    color: #aaa;
    font-size: 14px;
    margin-top: 5px;
}

/* History */
.history {
    padding: 80px 0;
    background: #1a1a2e;
}

.history h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e94560;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item .year {
    font-size: 24px;
    font-weight: 900;
    color: #e94560;
    margin-bottom: 5px;
}

.timeline-item .desc {
    color: #aaa;
    font-size: 14px;
}

/* Team */
.team {
    padding: 80px 0;
    background: #0f0f1a;
}

.team h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

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

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.team-card svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card p {
    color: #aaa;
    font-size: 13px;
}

/* Products */
.products {
    padding: 80px 0;
    background: #1a1a2e;
}

.products h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.product-card svg {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.product-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.product-card p {
    color: #aaa;
    font-size: 14px;
}

/* Advantages */
.advantages {
    padding: 80px 0;
    background: #0f0f1a;
}

.advantages h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

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

.adv-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.adv-card svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.adv-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.adv-card p {
    color: #aaa;
    font-size: 14px;
}

/* Solutions */
.solutions {
    padding: 80px 0;
    background: #1a1a2e;
}

.solutions h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

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

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.solution-card h3 {
    color: #e94560;
    font-size: 20px;
    margin-bottom: 10px;
}

.solution-card p {
    color: #aaa;
    font-size: 14px;
}

/* Industries */
.industries {
    padding: 80px 0;
    background: #0f0f1a;
}

.industries h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.industry-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.industry-item:hover {
    background: rgba(233, 69, 96, 0.1);
}

.industry-item svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.industry-item h3 {
    color: #fff;
    font-size: 16px;
}

/* Cases */
.cases {
    padding: 80px 0;
    background: #1a1a2e;
}

.cases h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

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

.case-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.case-card .case-img {
    height: 200px;
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-card .case-info {
    padding: 25px;
}

.case-card .case-info h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.case-card .case-info p {
    color: #aaa;
    font-size: 14px;
}

/* Partners */
.partners {
    padding: 80px 0;
    background: #0f0f1a;
}

.partners h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.partner-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.partner-item svg {
    width: 80px;
    height: 40px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #1a1a2e;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.testimonial-card .stars {
    color: #f1c40f;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card .author {
    color: #e94560;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-card .role {
    color: #aaa;
    font-size: 12px;
}

/* News */
.news {
    padding: 80px 0;
    background: #0f0f1a;
}

.news h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

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

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.news-card .news-img {
    height: 180px;
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card .news-info {
    padding: 25px;
}

.news-card .news-info .date {
    color: #e94560;
    font-size: 12px;
    margin-bottom: 8px;
}

.news-card .news-info h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.news-card .news-info p {
    color: #aaa;
    font-size: 14px;
}

/* Related Articles */
.related-articles {
    padding: 60px 0;
    background: #1a1a2e;
}

.related-articles h2 {
    text-align: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-item:hover {
    transform: translateY(-3px);
}

.related-item h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
}

.related-item p {
    color: #aaa;
    font-size: 13px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #0f0f1a;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(233, 69, 96, 0.1);
}

.faq-question .icon {
    transition: transform 0.3s;
    font-size: 20px;
}

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

.faq-answer {
    padding: 0 25px 20px;
    color: #aaa;
    font-size: 14px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* How To */
.howto {
    padding: 80px 0;
    background: #1a1a2e;
}

.howto h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

.howto-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.step .number {
    width: 40px;
    height: 40px;
    background: #e94560;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.step .step-content h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.step .step-content p {
    color: #aaa;
    font-size: 14px;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: #0f0f1a;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

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

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.contact-item h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-item p {
    color: #aaa;
    font-size: 14px;
}

.contact-item a {
    color: #e94560;
    text-decoration: none;
}

/* Friend Links */
.friend-links {
    padding: 40px 0;
    background: #1a1a2e;
    text-align: center;
}

.friend-links h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.friend-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s;
}

.friend-links a:hover {
    color: #e94560;
}

/* Sitemap */
.sitemap {
    padding: 40px 0;
    background: #0f0f1a;
    text-align: center;
}

.sitemap h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.sitemap a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
    transition: color 0.3s;
}

.sitemap a:hover {
    color: #e94560;
}

/* Footer */
.footer {
    background: #1a1a2e;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    color: #aaa;
    font-size: 13px;
    line-height: 2;
    text-decoration: none;
    display: block;
}

.footer-col a:hover {
    color: #e94560;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 12px;
}

.footer-bottom a {
    color: #e94560;
    text-decoration: none;
}

/* Search Box */
.search-box {
    display: flex;
    max-width: 400px;
    margin: 20px auto 0;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px 0 0 50px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.search-box input:focus {
    border-color: #e94560;
}

.search-box button {
    padding: 12px 25px;
    background: #e94560;
    border: none;
    border-radius: 0 50px 50px 0;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #c23152;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e94560;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transition: transform 0.3s;
    z-index: 100;
}

.back-to-top:hover {
    transform: scale(1.1);
}

.back-to-top.show {
    display: flex;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.dark-mode-toggle:hover {
    background: rgba(233, 69, 96, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1a1a2e;
        padding: 20px;
        border-bottom: 1px solid rgba(233, 69, 96, 0.3);
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
    }
    .menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }
    .banner {
        height: 350px;
    }
    .banner-slide h2 {
        font-size: 28px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        text-align: left;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    .stat-item .number {
        font-size: 36px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    .banner {
        height: 300px;
    }
    .banner-slide h2 {
        font-size: 22px;
    }
    .brand-card,
    .product-card {
        padding: 20px;
    }
}