/* Legal Pages Styles */

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}

/* Legal Container */
.legal-container {
    width: 100%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

/* Legal Header */
.legal-header {
    background-color: #1AB394;
    color: white;
    padding: 30px;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.legal-header h1 {
    font-size: 24px;
    font-weight: 600;
}

.legal-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.legal-header p {
    font-size: 14px;
    opacity: 0.8;
}

/* Legal Content */
.legal-content {
    padding: 30px;
}

section {
    margin-bottom: 30px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1AB394;
}

h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0 10px;
    color: #333;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #1AB394;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Legal Footer */
.legal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.btn-back {
    display: inline-block;
    background-color: #1AB394;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-back:hover {
    background-color: #149A82;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .legal-container {
        border-radius: 15px;
    }
    
    .legal-header {
        padding: 20px;
    }
    
    .legal-header h2 {
        font-size: 24px;
    }
    
    .legal-content {
        padding: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    h4 {
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
    }
    
    .legal-container {
        box-shadow: none;
        margin: 0;
    }
    
    .legal-header {
        background-color: white;
        color: black;
    }
    
    .legal-footer {
        display: none;
    }
}
