/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #121212;
}

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

/* Header styles */
.header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF50;
}

/* Hero section styles */
.hero {
    background-color: #1e1e1e;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.smartphone-icon {
    width: 100px;
    height: 100px;
    background-image: url('path-to-your-smartphone-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.primary {
    background-color: #4CAF50;
    color: #fff;
}

.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.primary:hover {
    background-color: #45a049;
}

.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Apps section styles */
.apps {
    background-color: #121212;
    padding: 80px 0;
}
.apps-body {
    font-size: 20px; /* Same size as hero section text */
    text-align: center;
    max-width: 70rem;
    margin: 0 auto;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 5rem;
}

.apps h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

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

.app-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-10px);
}

.app-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.app-content {
    padding: 20px;
}

.app-content h3 {
    color: #fff;
    margin-bottom: 10px;
}

.app-content p {
    color: #bbb;
    margin-bottom: 20px;
}

.store-link {
    display: inline-flex;
    align-items: center;
    background-color: #4CAF50;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.store-link:hover {
    background-color: #45a049;
}

.store-icon {
    width: 20px;
    height: 20px;
    background-image: url('path-to-your-store-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
}

/* Services section styles */
.services {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

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

.service-card {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.code-icon {
    background-image: url('path-to-your-code-icon.png');
}

.sparkles-icon {
    background-image: url('path-to-your-sparkles-icon.png');
}

.zap-icon {
    background-image: url('path-to-your-zap-icon.png');
}

.service-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.service-card p {
    color: #bbb;
}

/* Contact section styles */
.contact {
    background-color: #121212;
    padding: 80px 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #1e1e1e;
    color: #fff;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #45a049;
}

.send-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('path-to-your-send-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
    vertical-align: middle;
}

/* Footer styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-brand {
    flex-basis: 30%;
}

.footer-logo {
    height: 40px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-basis: 60%;
    justify-content: space-between;
}

.footer-column h4 {
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .apps-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-brand,
    .footer-links {
        flex-basis: 100%;
        margin-bottom: 30px;
    }
}