/* Global Styles */
:root {
    --primary-color: #6A52EE;
    --primary-light: #8B76FF;
    --primary-dark: #5541C0;
    --secondary-color: #2DD673;
    --accent-color: #F93D15;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #FFFFFF;
    --background-light: #F8F9FA;
    --border-color: #E5E7EB;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--background-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.button.primary {
    background-color: var(--secondary-color);
    color: var(--background-color);
    border-color: var(--secondary-color);
}

.button.primary:hover {
    background-color: #25B861;
    border-color: #25B861;
}

.button.secondary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.button.secondary:hover {
    background-color: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

/* Header Styles */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.device-wrapper {
    position: relative;
    z-index: 1;
}


.device-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background-color: #111;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid #333;
    overflow: hidden;
}

.device-mockup::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 20px;
    background-color: #333;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

/* Home button */
.device-button {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #333;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 1px solid #222;
    z-index: 2;
}

.dashboard-image {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

/* Hardware Section */
.hardware {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.hardware-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hardware-image {
    flex: 1;
    max-width: 45%;
}

.hardware-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.hardware-description {
    flex: 1;
}

.hardware-description h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.hardware-description ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: disc;
}

.hardware-description ul li {
    margin-bottom: 0.5rem;
}

.hardware-description .cta-button {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hardware-content {
        flex-direction: column;
    }
    
    .hardware-image {
        max-width: 100%;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--background-color);
}

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

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: var(--background-light);
}

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

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-features {
    padding: 2rem;
    flex: 1;
}

.pricing-features ul {
    list-style-type: none;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features ul li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.pricing-cta {
    padding: 0 2rem 2rem;
    text-align: center;
    margin-top: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-size: 2rem;
    opacity: 0.7;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* About Page Styles */
.about-details {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.about-intro {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.about-content {
    text-align: center;
    margin-bottom: 3rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: left;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-mission {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    margin-bottom: 1.5rem;
}

.mission-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-device-mockup {
    position: relative;
    width: 200px;
    height: 400px;
    background-color: #111;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid #333;
    overflow: hidden;
}

.about-device-mockup::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 15px;
    background-color: #333;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 8px 8px;
    z-index: 2;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.team-section {
    padding: 5rem 0;
    background-color: var(--background-light);
}

@media (max-width: 992px) {
    .about-mission {
        flex-direction: column;
    }
}

/* About CTA Section */
.about-cta {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.about-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 30px var(--shadow-color);
    overflow: hidden;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.about-card-content {
    padding: 3rem 3rem 3rem 4rem;
}

.about-card-content h2 {
    margin-bottom: 1.5rem;
}

.about-card-content p {
    margin-bottom: 2rem;
}

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

.team-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding-bottom: 2rem;
}

.team-image {
    height: 200px;
    background-color: var(--background-light);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
}

.team-card h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.team-card .role {
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--background-light);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
    max-width: 400px;
}

.cta-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-card p {
    margin-bottom: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236A52EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(106, 82, 238, 0.2);
}

/* Hardware Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.hardware-detailed {
    padding: 5rem 0;
}

.hardware-overview {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.hardware-overview .hardware-image {
    flex: 1;
    max-width: 45%;
}

.hardware-overview .hardware-text {
    flex: 1;
}

.hardware-overview h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.hardware-overview ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: disc;
}

.hardware-overview ul li {
    margin-bottom: 0.5rem;
}

.hardware-features {
    margin-bottom: 5rem;
}

.hardware-features h2 {
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hardware-pricing {
    margin-bottom: 5rem;
}

.hardware-pricing h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.pricing-table {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.pricing-table h3 {
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    margin-bottom: 0;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th, 
.pricing-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background-color: var(--background-light);
    font-weight: 600;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.hardware-integration {
    margin-bottom: 5rem;
}

.hardware-integration h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.hardware-integration > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.integration-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.hardware-cta {
    text-align: center;
    background-color: var(--background-light);
    padding: 4rem;
    border-radius: var(--border-radius);
}

.hardware-cta h2 {
    margin-bottom: 1rem;
}

.hardware-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 992px) {
    .hardware-overview {
        flex-direction: column;
    }
    
    .hardware-overview .hardware-image {
        max-width: 100%;
    }
    
    .pricing-tables {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .mobile-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 100;
    }
    
    .mobile-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px 0;
        background-color: var(--primary-color);
        transition: var(--transition);
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .cta-button {
        margin-top: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .services,
    .pricing,
    .testimonials,
    .about,
    .team,
    .contact {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .service-card,
    .pricing-card,
    .testimonial-card,
    .team-card {
        padding: 1.5rem;
    }
}