body {
            font-family: "Segoe UI", Arial, Helvetica, sans-serif;
            background-color: #eef2f5;
            color: #222222;
            margin: 0;
            padding: 0;
        }

        a {
            color: #008caa; 
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }

        .container {
            width: 960px;
            margin: 0 auto;
            background-color: #ffffff;
            box-shadow: 0 0 15px rgba(0,0,0,0.08);
        }

        /* Шапка сайту */
        header {
            padding: 12px 30px;
            background-color: #ffffff;
            border-bottom: 2px solid #008caa; 
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-link {
          display: inline-block;
          padding: 5px 0;
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-size: 14px;
            color: #444444;
            font-weight: 600;
            text-transform: uppercase;
        }

        nav ul li a:hover, nav ul li a.active {
            color: #008caa; 
        }

        /* Навігаційний ланцюжок */
        .breadcrumbs {
            padding: 15px 30px;
            background-color: #f8fafc;
            font-size: 12px;
            color: #64748b;
            border-bottom: 1px solid #e2e8f0;
        }

        /* Шапка контенту */
        .software-header {
            padding: 35px 30px 20px 30px;
            background: #f8fafc;
            border-bottom: 1px solid #cbd5e1;
        }

        .software-header h1 {
            margin: 0 0 10px 0;
            font-size: 26px;
            color: #001489;
            font-weight: 300;
        }
        
        .software-header h1 span {
            font-weight: bold;
            color: #008caa;
        }

        .software-header p {
            margin: 0;
            font-size: 14px;
            color: #475569;
            line-height: 1.5;
        }

        /* РОЗДІЛИ ПРОГРАМНОГО ЗАБЕЗПЕЧЕННЯ */
        .sw-section {
            padding: 30px;
        }

        .category-title {
            font-size: 18px;
            font-weight: bold;
            color: #001489;
            border-left: 4px solid #00a3e0;
            padding-left: 12px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Спеціальна ретро-сітка додатків */
        .sw-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .sw-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 20px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .sw-card:hover {
            border-color: #008caa;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }

        .sw-icon {
            font-size: 32px;
            background-color: #f1f5f9;
            padding: 10px;
            border-radius: 8px;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #cbd5e1;
        }

        .sw-info h3 {
            margin: 0 0 6px 0;
            font-size: 16px;
            color: #1e293b;
        }

        .sw-info .format {
            font-size: 10px;
            font-weight: bold;
            color: #ffffff;
            background-color: #64748b;
            padding: 1px 5px;
            border-radius: 3px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 5px;
        }
        
        .sw-info .format.sis { background-color: #0284c7; } /* Фірмовий формат Symbian */
        .sw-info .format.jar { background-color: #b45309; } /* Java формат */

        .sw-info p {
            margin: 0;
            font-size: 13px;
            color: #475569;
            line-height: 1.5;
        }

        /* Спеціальний розділ для тем */
        .themes-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .theme-item {
            border: 1px dashed #cbd5e1;
            padding: 15px;
            border-radius: 4px;
            text-align: center;
            background-color: #f8fafc;
        }

        .theme-preview-box {
            height: 60px;
            border-radius: 4px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: bold;
            font-size: 12px;
        }

        /* Розділювальна лінія */
        hr {
            border: 0;
            height: 1px;
            background: #e2e8f0;
            margin: 10px 30px;
        }

        /* ФУТЕР */
        footer {
            background-color: #1e293b; 
            padding: 35px 30px;
            font-size: 12px;
            color: #94a3b8;
        }

        .footer-links a {
            color: #cbd5e1;
            margin-right: 25px;
        }

        .copyright {
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #334155;
            padding-top: 20px;
        }

        .nokia-slogan {
            font-size: 14px;
            font-weight: bold;
            color: #ffffff;
            letter-spacing: 1px;
        }