/* Installation Page Specific Styles */

body {
    background: #000000;
}

/* OS Section */
.os-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.os-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.os-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.os-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.os-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.os-card p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.os-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.os-card li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.os-card li:before {
    content: "✓ ";
    position: absolute;
    left: 0;
    color: #90ee90;
}

.price-tag {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 1rem;
}

/* Software Categories */
.software-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.category-card ul {
    list-style: none;
}

.category-card li {
    color: #aaa;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: #aaa;
    margin-bottom: 1rem;
}

.service-item ul {
    list-style: none;
    margin: 1rem 0;
}

.service-item li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-item li:before {
    content: "✓ ";
    position: absolute;
    left: 0;
    color: #90ee90;
}

/* Included Section */
.included-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.included-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.included-item {
    padding: 1.5rem;
}

.included-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.included-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.included-item p {
    color: #888;
    font-size: 0.9rem;
}
