:root {
--primary: #7c4dff;
--secondary: #ff4081;
--accent: #18ffff;
--dark: #1a237e;
--light: #f5f5f7;
--gray: #5f6368;
--success: #4caf50;
--warning: #ff9800;
--dark-gradient: linear-gradient(135deg, var(--dark) 0%, #311b92 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
color: #333;
line-height: 1.6;
background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
overflow-x: hidden;
/* position: relative; */
}
a {
color: #333;
text-decoration: none;
}
#particles-js {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
0% { transform: translateY(0px) rotate(3deg); }
50% { transform: translateY(-20px) rotate(3deg); }
100% { transform: translateY(0px) rotate(3deg); }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
/* Header Styles */
header {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
animation: fadeIn 0.8s ease-out;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}
.logo {
display: flex;
align-items: center;
}
.logo-icon {
color: var(--primary);
font-size: 28px;
margin-right: 10px;
}
.logo-text {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 24px;
background: linear-gradient(45deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 25px;
}
nav ul li a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
font-size: 16px;
transition: all 0.3s ease;
position: relative;
padding: 5px 0;
}
nav ul li a.active {
color: var(--primary);
border-bottom: 3px solid var(--primary);
}
nav ul li a:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: width 0.3s ease;
}
nav ul li a:hover:after {
width: 100%;
}
nav ul li a:hover {
color: var(--primary);
}
.cta-button {
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: white;
border: none;
padding: 12px 28px;
border-radius: 30px;
font-weight: 500;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(124, 77, 255, 0.6);
animation: pulse 1s infinite;
}
/* Mobile Menu - Enhanced for clarity */
.menu-toggle {
display: none;
flex-direction: column;
justify-content: space-between;
width: 30px;
height: 21px;
cursor: pointer;
position: relative;
z-index: 1001;
}
.menu-toggle span {
display: block;
height: 3px;
width: 100%;
background: var(--dark);
border-radius: 3px;
transition: all 0.3s ease;
}
.mobile-nav {
position: fixed;
top: 0;
right: 0;
width: 85%;
max-width: 300px;
z-index: 1000;
background: rgba(26, 35, 126, 0.95);
padding: 25px;
overflow-y: auto;
display: none; /* 初始隐藏 */
transition: opacity 0.3s ease;
opacity: 0;
}
.mobile-nav.active {
display: block;
opacity: 1;
}
.mobile-nav::before {
content: "Menu";
display: block;
color: var(--accent);
font-weight: 700;
font-size: 22px;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-nav ul {
list-style: none;
}
.mobile-nav ul li {
margin-bottom: 8px;
}
.mobile-nav ul li a {
text-decoration: none;
color: white;
font-size: 18px;
display: block;
padding: 16px 20px;
border-radius: 8px;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.08);
}
.mobile-nav ul li a:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateX(5px);
}
.close-menu {
position: absolute;
top: 25px;
right: 25px;
font-size: 24px;
cursor: pointer;
background: rgba(255, 255, 255, 0.15);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
display: none;
transition: opacity 0.3s ease;
opacity: 0;
}
.overlay.active {
display: block;
opacity: 1;
}
/* Hero Section */
.hero {
padding: 120px 0 80px;
position: relative;
overflow: hidden;
}
.hero-content {
display: flex;
align-items: center;
position: relative;
z-index: 2;
}
.hero-text {
flex: 1;
padding-right: 40px;
}
.hero h1 {
font-family: 'Montserrat', sans-serif;
font-size: 52px;
line-height: 1.2;
margin-bottom: 20px;
color: var(--dark);
animation: fadeIn 0.8s ease-out;
}
.hero h1 span {
background: linear-gradient(45deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero p {
font-size: 20px;
color: var(--gray);
margin-bottom: 30px;
max-width: 600px;
animation: fadeIn 1s ease-out;
}
.hero-buttons {
display: flex;
gap: 15px;
margin-top: 30px;
animation: fadeIn 1.2s ease-out;
}
.btn-secondary {
background: white;
color: var(--primary);
border: 2px solid var(--primary);
padding: 12px 28px;
border-radius: 30px;
font-weight: 500;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}
.btn-secondary:hover {
background: var(--primary);
color: white;
}
.hero-image {
flex: 1;
display: flex;
justify-content: center;
position: relative;
}
.hero-img {
width: 100%;
max-width: 550px;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
/* transform: rotate(3deg); */
/* animation: float 6s ease-in-out infinite; */
}
/* Stats Section */
.stats {
background: var(--dark-gradient);
color: white;
padding: 30px 0;
text-align: center;
border-radius: 20px;
margin: 40px auto;
max-width: 1200px;
position: relative;
overflow: hidden;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.stats-container {
display: flex;
justify-content: space-around;
width: 100%;
}
.stat-item {
padding: 20px;
min-width: 200px;
flex: 1;
animation: fadeIn 0.5s ease-out;
animation-delay: calc(0.1s * var(--delay));
}
.stat-number {
font-family: 'Montserrat', sans-serif;
font-size: 48px;
font-weight: 700;
margin-bottom: 10px;
color: var(--accent);
animation: pulse 2s infinite;
}
.stat-text {
font-size: 18px;
opacity: 0.9;
}
/* Products Section */
.products {
padding: 100px 0;
}
.section-header {
text-align: center;
margin-bottom: 50px;
}
.section-header h2 {
font-family: 'Montserrat', sans-serif;
font-size: 38px;
color: var(--dark);
margin-bottom: 15px;
position: relative;
display: inline-block;
}
.section-header h2:after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--secondary);
border-radius: 2px;
}
.section-header p {
font-size: 18px;
color: var(--gray);
max-width: 700px;
margin: 30px auto 0;
}
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}
.product-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
position: relative;
animation: fadeIn 0.6s ease-out;
}
.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.product-trend {
position: absolute;
top: 15px;
right: 15px;
background: var(--secondary);
color: white;
padding: 5px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 500;
z-index: 2;
}
.product-image {
background: linear-gradient(45deg, #f5f7fa, #e4edf5);
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.product-image i {
font-size: 80px;
color: var(--primary);
opacity: 0.7;
}
.product-info {
padding: 25px;
}
.product-info h3 {
font-size: 22px;
margin-bottom: 10px;
color: var(--dark);
}
.product-stats {
display: flex;
justify-content: space-between;
margin-top: 15px;
font-size: 14px;
color: var(--gray);
}
.stat-value {
color: var(--primary);
font-weight: 600;
}
/* Applications Section - Now 4 columns */
.applications {
padding: 100px 0;
background: white;
border-radius: 30px;
margin: 60px 0;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.applications-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 35px;
margin-top: 40px;
}
.application-card {
background: var(--light);
border-radius: 15px;
padding: 30px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
position: relative;
overflow: hidden;
animation: fadeIn 0.7s ease-out;
}
.application-card:hover {
transform: translateY(-5px);
background: white;
box-shadow: 0 10px 25px rgba(124, 77, 255, 0.1);
}
.application-card:hover .application-keywords {
max-height: 500px;
opacity: 1;
padding: 15px 0 0;
}
.application-icon {
font-size: 48px;
color: var(--primary);
margin-bottom: 20px;
}
.application-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--dark);
}
.application-keywords {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 15px;
max-height: 0;
opacity: 0;
overflow: hidden;
transition: all 0.5s ease;
}
.app-keyword {
background: rgba(124, 77, 255, 0.1);
color: var(--primary);
padding: 5px 12px;
border-radius: 20px;
font-size: 14px;
font-weight: 500;
}
/* Color Collections Section - New Design */
.color-collections {
padding: 100px 0;
background: linear-gradient(135deg, #e4edf5 0%, #d9e4f0 100%);
border-radius: 30px;
margin: 60px 0;
}
.collections-container {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin-top: 40px;
}
.collection-card {
flex: 1;
min-width: 300px;
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
transition: all 0.4s ease;
position: relative;
}
.collection-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.collection-header {
padding: 25px;
background: var(--dark);
color: white;
}
.collection-header h3 {
font-size: 24px;
margin-bottom: 10px;
color: var(--accent);
}
.collection-colors {
display: flex;
height: 100px;
}
.color-swatch {
flex: 1;
position: relative;
transition: all 0.3s ease;
}
.color-swatch:hover {
flex: 1.5;
}
.color-name {
position: absolute;
bottom: 10px;
left: 10px;
background: rgba(0,0,0,0.6);
color: white;
padding: 3px 8px;
border-radius: 10px;
font-size: 12px;
opacity: 0;
transition: opacity 0.3s ease;
}
.color-swatch:hover .color-name {
opacity: 1;
}
.collection-content {
padding: 25px;
}
.collection-content h4 {
font-size: 20px;
margin-bottom: 15px;
color: var(--dark);
}
.collection-keywords {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 15px;
}
.collection-keyword {
background: rgba(124, 77, 255, 0.1);
color: var(--primary);
padding: 5px 12px;
border-radius: 20px;
font-size: 14px;
font-weight: 500;
}
/* Why Us Section */
.why-us {
padding: 100px 0;
background: linear-gradient(135deg, #eef2f5 0%, #e4edf5 100%);
border-radius: 30px;
margin: 60px 0;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 30px;
margin-top: 40px;
}
.feature-card {
background: white;
padding: 30px;
border-radius: 15px;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
animation: fadeIn 0.8s ease-out;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(124, 77, 255, 0.1);
}
.feature-icon {
font-size: 40px;
color: var(--primary);
margin-bottom: 20px;
}
.feature-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--dark);
}
/* Testimonials */
.testimonials {
padding: 100px 0;
background: white;
border-radius: 30px;
margin: 60px 0;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 30px;
margin-top: 40px;
}
.testimonial-card {
background: var(--light);
padding: 30px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
position: relative;
animation: fadeIn 0.9s ease-out;
}
.testimonial-card:before {
content: '"';
position: absolute;
top: 20px;
left: 20px;
font-size: 80px;
font-family: serif;
color: rgba(124, 77, 255, 0.1);
line-height: 1;
z-index: 1;
}
.testimonial-content {
position: relative;
z-index: 2;
}
.testimonial-text {
font-size: 16px;
margin-bottom: 20px;
font-style: italic;
color: var(--gray);
}
.testimonial-author {
display: flex;
align-items: center;
}
.author-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--light);
margin-right: 15px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-weight: bold;
font-size: 20px;
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: white;
}
.author-info h4 {
font-size: 18px;
margin-bottom: 5px;
color: var(--dark);
}
.author-info p {
font-size: 14px;
color: var(--gray);
}
.rating {
color: var(--warning);
margin-top: 5px;
}
/* FAQ Section */
.faq {
padding: 100px 0;
background: linear-gradient(135deg, #e4edf5 0%, #d9e4f0 100%);
border-radius: 30px;
margin: 60px 0;
}
.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
gap: 30px;
margin-top: 40px;
}
.faq-item {
background: white;
border-radius: 15px;
padding: 25px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
animation: fadeIn 1s ease-out;
}
.faq-question {
font-size: 18px;
font-weight: 600;
margin-bottom: 15px;
color: var(--dark);
display: flex;
align-items: center;
}
.faq-question i {
color: var(--primary);
margin-right: 10px;
}
/* CTA Section */
.cta-section {
background: linear-gradient(135deg, var(--primary), var(--dark));
color: white;
padding: 100px 0;
text-align: center;
border-radius: 20px;
margin: 60px 0;
/* position: relative; */
overflow: hidden;
}
.cta-section:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: 70%;
background-position: center;
opacity: 0.3;
}
.cta-section h2 {
font-family: 'Montserrat', sans-serif;
font-size: 42px;
margin-bottom: 20px;
position: relative;
z-index: 2;
}
.cta-section p {
font-size: 20px;
max-width: 700px;
margin: 0 auto 30px;
opacity: 0.9;
position: relative;
z-index: 2;
}
.cta-form {
max-width: 500px;
margin: 40px auto 0;
display: flex;
position: relative;
z-index: 2;
}
.cta-form input {
flex: 1;
padding: 15px 20px;
border: none;
border-radius: 50px 0 0 50px;
font-size: 16px;
}
.cta-form button {
background: var(--secondary);
color: white;
border: none;
padding: 15px 30px;
border-radius: 0 50px 50px 0;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}
.cta-form button:hover {
background: #f50057;
}
/* News Section - Updated with better tabs */
.news-section {
padding: 100px 0;
background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}
.news-container {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.news-tabs {
display: flex;
justify-content: center; /* Center the tabs */
}
.news-tab {
padding: 16px 30px; /* More compact padding */
margin: 0 6px;
text-align: center;
color: white;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
font-size: 17px;
position: relative;
opacity: 0.8;
min-width: 160px; /* Set a min-width for better appearance */
background: var(--dark-gradient);
border-bottom: 1px solid rgba(255,255,255,0.1);
border-radius: 0.5em;
}
.news-tab.active {
opacity: 1;
}
.news-tab:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
background: var(--accent);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.news-tab.active:after {
transform: scaleX(0.95);
}
.news-content {
padding: 40px;
}
.news-panel {
display: none;
}
.news-panel.active {
display: block;
animation: fadeIn 0.5s ease;
}
.news-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
}
.news-item {
background: var(--light);
border-radius: 15px;
padding: 25px;
transition: all 0.3s ease;
}
.news-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.news-date {
font-size: 14px;
color: var(--primary);
margin-bottom: 10px;
font-weight: 500;
}
.news-title {
font-size: 20px;
margin-bottom: 15px;
color: var(--dark);
}
.news-excerpt {
font-size: 16px;
color: var(--gray);
margin-bottom: 15px;
}
.read-more {
color: var(--primary);
font-weight: 500;
text-decoration: none;
display: inline-flex;
align-items: center;
}
.read-more i {
margin-left: 5px;
transition: transform 0.3s ease;
}
.read-more:hover i {
transform: translateX(3px);
}
/* Footer */
footer {
background: var(--dark);
color: white;
padding: 100px 0 30px;
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-logo {
font-family: 'Montserrat', sans-serif;
font-size: 24px;
font-weight: 700;
margin-bottom: 20px;
color: var(--accent);
}
.footer-about p {
opacity: 0.8;
margin-bottom: 20px;
}
.social-icons {
display: flex;
gap: 15px;
}
.social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: white;
transition: all 0.3s ease;
}
.social-icons a:hover {
background: var(--primary);
transform: translateY(-3px);
}
.footer-links h3 {
font-size: 18px;
margin-bottom: 20px;
color: var(--accent);
}
.footer-links ul {
list-style: none;
}
.footer-links ul li {
margin-bottom: 12px;
}
.footer-links ul li a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s ease;
}
.footer-links ul li a:hover {
color: var(--accent);
padding-left: 5px;
}
.footer-contact h3 {
font-size: 18px;
margin-bottom: 20px;
color: var(--accent);
}
.contact-info {
margin-bottom: 20px;
}
.contact-info p {
display: flex;
align-items: center;
margin-bottom: 10px;
opacity: 0.8;
}
.contact-info i {
margin-right: 10px;
color: var(--accent);
}
.copyright {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 14px;
opacity: 0.7;
}
        /* Contact Form */
        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
			width: 730px;
    margin: 0 auto;
    text-align: left;
        }
        
        .contact-form h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            margin-bottom: 30px;
            color: var(--dark);
        }
        
        .form-group {
          margin-bottom: 10px; 
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-group input, 
        .form-group textarea, 
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus, 
        .form-group textarea:focus, 
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .submit-btn {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
            width: 100%;
            font-family: 'Poppins', sans-serif;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(124, 77, 255, 0.6);
            animation: pulse 1s infinite;
        }
/* Responsive Design */
@media (max-width: 1200px) {
.hero-content {
flex-direction: column;
}
.hero-text {
padding-right: 0;
margin-bottom: 40px;
text-align: center;
}
.hero-buttons {
justify-content: center;
}
.hero h1 {
font-size: 42px;
}
.news-list {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 992px) {
.stats-container {
flex-wrap: wrap;
}
.stat-item {
min-width: 45%;
margin-bottom: 20px;
}
.applications-grid {
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
}
@media (max-width: 768px) {
nav ul {
display: none;
}
.menu-toggle {
display: flex;
}
.hero {
padding: 100px 0 50px;
}
.hero h1 {
font-size: 32px;
}
.hero-buttons {
flex-direction: column;
gap: 10px;
}
.section-header h2 {
font-size: 28px;
}
.cta-form {
flex-direction: column;
}
.cta-form input {
border-radius: 50px;
margin-bottom: 10px;
}
.cta-form button {
border-radius: 50px;
width: 100%;
}
.stat-item {
min-width: 100%;
}
.faq-grid {
grid-template-columns: 1fr;
}
.applications-grid {
grid-template-columns: 1fr;
}
.news-tabs {
flex-direction: column;
}
.news-list {
grid-template-columns: 1fr;
}
.contact-form {
padding: 5px;
width: 95%;
}
.news-content {
padding: 0px; 
}
}