/* Modern Combined CSS for InfoKiosk Website */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4e4e4e;
    background: #f7f7f7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c8fda;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: #27a7e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: #2c8fda;
    }

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Layout */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
}

/* Header */
.header {
    background: linear-gradient(135deg, #fafafa 0%, #efefef 100%);
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(229, 229, 229, 0.5);
    margin-bottom: 20px;
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #f2f2f2;
    min-height: 118px;
}

.logo {
    flex-shrink: 0;
}

    .logo img {
        height: 60px;
        width: auto;
    }

.header-main {
    flex: 1;
    margin-left: 30px;
}

.navigation {
    margin-bottom: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-item {
    background: transparent;
    border: none;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

    .nav-link:hover,
    .nav-link.active {
        color: #27a7e3;
        background-color: rgba(39, 167, 227, 0.1);
    }

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.tagline {
    color: #bbbbbb;
    font-size: 16px;
    padding-left: 30px;
}

.remote-login {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .remote-login img {
        width: 16px;
        height: 16px;
    }

    .remote-login a {
        color: #27a7e3;
        font-size: 16px;
        font-weight: 500;
    }

/* Main Content */
.main-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(229, 229, 229, 0.3);
    margin-bottom: 20px;
    overflow: hidden;
}

.content-inner {
    padding: 40px;
    border-top: 1px solid #fff;
    border-bottom: 3px solid #ff6b35;
}

/* Home Page Sections */
.product-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin: 40px 0;
}

    .product-section.reverse {
        flex-direction: row-reverse;
    }

.product-image {
    flex: 0 0 460px;
}

    .product-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

.product-content {
    flex: 1;
}

.product-title {
    font-size: 24px;
    color: #2c8fda;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2c8fda;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .product-link:hover {
        color: #27a7e3;
        transform: translateX(5px);
    }

    .product-link img {
        width: 16px;
        height: 16px;
    }

.purpose-section {
    border-top: 1px solid #eeeeee;
    padding-top: 30px;
    margin-top: 30px;
}

.purpose-title {
    color: #888888;
    font-size: 24px;
    margin-bottom: 20px;
}

.purpose-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.purpose-icon {
    flex: 0 0 70px;
}

    .purpose-icon img {
        width: 100%;
        height: auto;
    }

.purpose-text {
    flex: 1;
    font-size: 14px;
    color: #666;
}

/* InfoKiosk Page Styles */
.banner-image {
    text-align: center;
    margin: 30px 0;
}

    .banner-image img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

.section-divider {
    height: 1px;
    background: #eeeeee;
    margin: 30px 0 20px 0;
}

.section-title {
    color: #2c8fda;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    border: none;
    outline: none;
    box-shadow: none;
}

.feature-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
}

.feature-icon {
    flex: 0 0 70px;
}

    .feature-icon img {
        width: 100%;
        height: auto;
    }

.feature-content {
    flex: 1;
}

.feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* InfoKiosk specific sections */
.infokiosk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.infokiosk-feature {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2c8fda;
}

    .infokiosk-feature h3 {
        color: #2c8fda;
        font-size: 18px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .infokiosk-feature img {
        width: 24px;
        height: 24px;
    }

    .infokiosk-feature p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

.infokiosk-windows {
    text-align: center;
    margin: 40px 0;
}

    .infokiosk-windows img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

/* Downloads Page Styles */
.download-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid #e5e5e5;
}

.download-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.download-icon img {
    width: 32px;
    height: 32px;
}

.download-title {
    color: #303030;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.download-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.download-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.download-info {
    display: flex;
    gap: 30px;
}

.download-info-item {
    font-size: 14px;
}

.download-info-label {
    font-weight: 600;
    color: #333;
}

.download-button {
    background: #27a7e3;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .download-button:hover {
        background: #2c8fda;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(39, 167, 227, 0.3);
    }

/* Contacts Page Styles */
.contacts-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-info {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    border-left: 4px solid #2c8fda;
}

.contact-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-details {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

    .contact-details strong {
        color: #333;
    }

    .contact-details img {
        vertical-align: middle;
        margin: 0 5px;
    }

.contact-email {
    color: #27a7e3;
    text-decoration: none;
}

    .contact-email:hover {
        color: #2c8fda;
        text-decoration: underline;
    }

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
        color: #333;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #27a7e3;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

/* Footer */
.footer {
    background: #333;
    color: #999;
    padding: 40px 0 20px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-copyright {
    color: #9e9e9e;
    font-size: 14px;
    line-height: 1.6;
}

.footer-menu {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-column a {
        color: #999;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-column a:hover {
            color: #27a7e3;
        }

.footer-visa {
    text-align: right;
}

    .footer-visa img {
        height: 30px;
        width: auto;
    }

/* InfoKiosk Pricing Table */
.pricing-section {
    margin: 40px 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

    .pricing-header img {
        width: 111px;
        height: auto;
        margin-bottom: 15px;
    }

.pricing-version {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 10px 0 5px 0;
}

.pricing-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-price {
    background: #4ec723;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .pricing-price:hover {
        background: #45b41f;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(78, 199, 35, 0.3);
    }

.pricing-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.pricing-table tr:nth-child(even) {
    background-color: #f0f0f0;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

    .feature-name img {
        width: 20px;
        height: 20px;
    }

.feature-included {
    text-align: center;
}

    .feature-included img {
        width: 16px;
        height: 16px;
    }

/* System Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.requirement-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c8fda;
}

.requirement-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.requirement-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Getting Started Steps */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px 0;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    max-width: 240px;
    position: relative;
}

.step-content {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    border-top: 4px solid #2c8fda;
    margin-bottom: 20px;
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: #2c8fda;
    margin-bottom: 15px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.step:last-child .step-arrow {
    display: none;
}

.download-section {
    text-align: center;
    margin: 40px 0;
}

.download-button-large {
    background: #449ade;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .download-button-large:hover {
        background: #3a8bd1;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(68, 154, 222, 0.3);
    }

    .download-button-large img {
        width: 24px;
        height: 24px;
    }

/* Remote Console Page Specific Styles */
.remote-management-section {
    margin: 40px 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-row {
    display: flex;
    gap: 40px;
}

    .feature-row .feature-section {
        flex: 1;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .feature-row .feature-icon {
        flex: 0 0 90px;
        padding-top: 20px;
    }

        .feature-row .feature-icon img {
            width: 100%;
            height: auto;
        }

    .feature-row .feature-content {
        flex: 1;
    }

.getting-started-section {
    margin: 40px 0;
}

    .getting-started-section .steps-container {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin: 30px 0;
        justify-content: space-between;
    }

    .getting-started-section .step {
        flex: 1;
        max-width: 240px;
        text-align: center;
    }

    .getting-started-section .step-content {
        background: #f9f9f9;
        padding: 30px 20px;
        border-radius: 8px;
        border-top: 4px solid #2c8fda;
        margin-bottom: 20px;
    }

    .getting-started-section .step-number {
        font-size: 24px;
        font-weight: bold;
        color: #2c8fda;
        margin-bottom: 15px;
    }

    .getting-started-section .step-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }

    .getting-started-section .step-description {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    .getting-started-section .step-button {
        text-align: center;
        margin-top: 20px;
    }

    .getting-started-section .step-arrow {
        flex: 0 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 60px;
    }

        .getting-started-section .step-arrow img {
            width: 20px;
            height: 20px;
        }

.additional-steps {
    margin-top: 40px;
}

    .additional-steps .feature-row .feature-icon {
        flex: 0 0 130px;
        margin-top: -10px;
    }

        .additional-steps .feature-row .feature-icon:nth-child(1) {
            margin-left: 10px;
        }

.pricing-comparison-section {
    margin: 40px 0;
}

.comparison-grid {
    display: flex;
    gap: 60px;
    margin: 30px 0;
    justify-content: center;
}

.comparison-item {
    flex: 1;
    max-width: 400px;
}

.comparison-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.comparison-icon {
    flex: 0 0 120px;
}

    .comparison-icon img {
        width: 100%;
        height: auto;
    }

.comparison-info {
    flex: 1;
}

.comparison-table-wrapper {
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .comparison-table td {
        padding: 20px;
        border-bottom: 1px solid #eee;
        vertical-align: top;
        width: 50%;
    }

    .comparison-table tr:nth-child(even) {
        background-color: #f0f0f0;
    }

.comparison-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.comparison-feature-icon {
    flex: 0 0 45px;
}

    .comparison-feature-icon img {
        width: 100%;
        height: auto;
    }

.comparison-feature-content {
    flex: 1;
}

.final-cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button-large {
    background: #303030;
    color: white;
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    height: 80px;
    transition: all 0.3s ease;
}

    .cta-button-large:hover {
        background: #444;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(48, 48, 48, 0.3);
    }

    .cta-button-large img {
        width: 24px;
        height: 24px;
    }

/* Privacy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 20px 0;
}

.privacy-section h2 {
    color: #2C8FDA;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #EEEEEE;
    padding-bottom: 5px;
}

.privacy-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.privacy-section li {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.privacy-section li strong {
    color: #333;
    font-weight: 600;
}

.privacy-section em {
    color: #888;
    font-style: italic;
}

.privacy-section a {
    color: #27A7E3;
    text-decoration: none;
}

.privacy-section a:hover {
    color: #2C8FDA;
    text-decoration: underline;
}

/* Terms Page Styles */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 40px;
    padding: 20px 0;
}

.terms-section h2 {
    color: #2C8FDA;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #EEEEEE;
    padding-bottom: 5px;
}

.terms-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.terms-section strong {
    color: #333;
    font-weight: 600;
}

.terms-section a {
    color: #27A7E3;
    text-decoration: none;
}

.terms-section a:hover {
    color: #2C8FDA;
    text-decoration: underline;
}

/* Special styling for legal text */
.terms-section p:first-of-type {
    margin-top: 0;
}

.terms-section p:last-of-type {
    margin-bottom: 0;
}

/* Responsive design for Terms page */
@media (max-width: 768px) {
    .terms-content {
        max-width: 100%;
    }
    
    .terms-section {
        margin-bottom: 30px;
        padding: 15px 0;
    }
    
    .terms-section h2 {
        font-size: 18px;
    }
    
    .terms-section p {
        font-size: 13px;
    }
}

/* Responsive design for Privacy page */
@media (max-width: 768px) {
    .privacy-content {
        max-width: 100%;
    }
    
    .privacy-section {
        margin-bottom: 30px;
        padding: 15px 0;
    }
    
    .privacy-section h2 {
        font-size: 18px;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 13px;
    }
}

/* Responsive design for Remote Console page */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        gap: 20px;
    }

    .getting-started-section .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .getting-started-section .step-arrow {
        display: none;
    }

    .comparison-grid {
        flex-direction: column;
        gap: 40px;
    }

    .comparison-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .comparison-table td {
        padding: 15px;
    }

    .comparison-feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .comparison-feature-icon {
        flex: none;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .getting-started-section .step {
        max-width: 100%;
    }

    .comparison-table {
        font-size: 12px;
    }

    .cta-button-large {
        padding: 15px 30px;
        font-size: 16px;
        height: 60px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Loading animation for better UX */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #27a7e3;
    outline-offset: 2px;
}

/* Remove outline from headings and non-interactive elements */
h1:focus, h2:focus, h3:focus, h4:focus, h5:focus, h6:focus,
.section-title:focus {
    outline: none;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .navigation {
        display: none;
    }

    .main-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
