/* Basic Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 2rem;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.header {
    margin-bottom: 4rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

p {
    font-size: 1.1rem;
    color: #718096;
}

/* App Grid Layout */
.app-grid {
    display: grid;
    gap: 2rem;
    /* Desktop: 4 columns */
    grid-template-columns: repeat(4, 1fr);
}

/* App Card Styling */
.app-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 40vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.07), 0 15px 25px rgba(0, 0, 0, 0.07);
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.install-button {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.install-button:hover {
    background-color: #2a4365;
}

.pod_logo {
    width: 100%;
    margin-bottom: 10px;
}

.printspace {
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive: Mobile and Tablet Layout */
@media (max-width: 992px) {
    /* 2x2 grid for tablets and smaller laptops */
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    body {
        padding: 1rem;
    }
    .app-card {
	padding: 1rem;
	min-height: 30vh;
    }
    h2 {
	font-size: 1rem;
    }
    .app-grid {
	gap: 1rem;
    }
    .header {
	margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem;
    }
    /* Optional: 1 column for very small phones, but 2x2 looks good on most */
    /* .app-grid {
        grid-template-columns: 1fr;
    } */
}
