/* Contact Page Styles */
.contact-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #1e829e;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e829e;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.required {
    color: #ff7f00;
}

.submit-btn {
    background: #1e829e;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(30, 130, 158, 0.25);
}

.submit-btn:hover {
    background: #1a6f85;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    display: none;
    background: #f7faf5;
    border-left: 4px solid #1e829e;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.success-message.show {
    display: block;
}

.success-message h2 {
    color: #1e829e;
    margin-bottom: 1rem;
}

.success-message p {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.error-message {
    background: #fff3e0;
    border-left: 4px solid #ff7f00;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
}

.error-message.show {
    display: block;
}

.contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #f7faf5;
    border-radius: 12px;
    text-align: center;
}

.contact-info h3 {
    color: #1e829e;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #444;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #ff7f00;
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* For Business Page Styles */
.business-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.business-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.business-section h2 {
    color: #1e829e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.business-section h3 {
    color: #1e829e;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.business-section p {
    color: #444;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.business-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #444;
}

.business-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: #f7faf5;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #ff7f00;
}

.pricing-card h4 {
    color: #1e829e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff7f00;
    margin-bottom: 0.5rem;
}

.price-period {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: #444;
}

.features-list li:before {
    content: "✓ ";
    color: #3d8d23;
    font-weight: bold;
    margin-right: 0.5rem;
}

.cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: #ff7f00;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e67300;
}

@media (max-width: 768px) {
    .business-section {
        padding: 1.75rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Help Page Styles */
.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.help-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 2.5rem;
}

.help-section h2 {
    color: #1e829e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #ff7f00;
    padding-bottom: 0.5rem;
}

.help-section h3 {
    color: #1e829e;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.help-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.help-card {
    background: #f7faf5;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1e829e;
    transition: transform 0.2s, box-shadow 0.2s;
}

.help-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.help-card h4 {
    color: #1e829e;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-card .icon {
    font-size: 1.5rem;
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.help-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.help-list li:last-child {
    border-bottom: none;
}

.help-list a {
    color: #1e829e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-list a:hover {
    color: #ff7f00;
}

.help-list a::before {
    content: "→";
    color: #ff7f00;
    font-weight: bold;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.platform-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #ff7f00;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-card h3 {
    color: #1e829e;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.platform-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-card .btn-help {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #1e829e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.platform-card .btn-help:hover {
    background: #1a6f85;
}

.contact-box {
    background: linear-gradient(135deg, #f7faf5 0%, #e8f4f6 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #ff7f00;
    margin: 2rem 0;
}

.contact-box h3 {
    color: #1e829e;
    margin-top: 0;
}

.contact-box p {
    color: #444;
    line-height: 1.7;
}

.contact-box a {
    color: #ff7f00;
    font-weight: 600;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .help-section {
        padding: 1.75rem;
    }

    .help-topics,
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

/* Install Page Styles */
.install-section {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.platform-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    border-left: 6px solid #ff7f00;
}

.platform-section h2 {
    color: #1e829e;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform-section h3 {
    color: #1e829e;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.platform-section h3:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 1.5rem;
}

.platform-section p {
    color: #444;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.platform-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: #444;
}

.platform-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #1e829e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 12px rgba(30, 130, 158, 0.25);
    margin: 1rem 0;
}

.download-btn:hover {
    background: #1a6f85;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 130, 158, 0.35);
}

.download-btn svg {
    width: 24px;
    height: 24px;
}

.download-btn.direct {
    background: #ff7f00;
}

.download-btn.direct:hover {
    background: #e67300;
}

.requirements {
    background: #f7faf5;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.requirements h4 {
    color: #1e829e;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.note {
    background: #fff8e6;
    border-left: 4px solid #ff7f00;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.note strong {
    color: #ff7f00;
}

@media (max-width: 768px) {
    .platform-section {
        padding: 1.75rem;
    }

    .platform-section h2 {
        font-size: 1.6rem;
    }
}

/* Privacy & Terms Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.legal-content h2 {
    color: #1e829e;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.legal-content h3 {
    color: #1e829e;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-content p {
    color: #444;
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #444;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.highlight-box {
    background: #f7faf5;
    border-left: 4px solid #1e829e;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}
