/* General Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --background-color: #f8f9fa;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --white-color: #ffffff;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    padding-bottom: 80px; /* Space for fixed footer */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--white-color);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white-color);
    padding: 20px 0;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

header h1 {
    color: var(--white-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white-color);
    box-shadow: var(--shadow-medium);
    margin: 15px auto;
    display: block;
}

.social-links {
    margin: 20px 0;
}

.social-links nav a {
    display: inline-block;
    margin: 0 10px;
    transition: var(--transition);
}

.social-links nav a:hover {
    transform: translateY(-3px);
}

.social-links nav a img {
    border-radius: 50%;
    transition: var(--transition);
}

/* Navigation Styles */
.Real-Nav {
    margin-top: 20px;
}

.Real-Nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.Real-Nav ul li a {
    color: var(--white-color);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    font-weight: 500;
}

.Real-Nav ul li a:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white-color);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.education-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.education-card h3 {
    color: var(--white-color);
    margin-bottom: 1rem;
}

.degree-info h4 {
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.university {
    font-weight: 600;
    opacity: 0.9;
}

.graduation-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.portfolio-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Skills Preview Section */
.skills-preview-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-category {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.skill-category h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Page Styles */
.about-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.about-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.icon {
    font-size: 1.5rem;
}

.skills-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-group h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.skill-group p {
    color: var(--text-light);
    margin-bottom: 0;
}

.experience-list {
    padding-left: 1.5rem;
    color: var(--text-light);
}

.experience-list li {
    margin-bottom: 0.5rem;
}

.education-info h4 {
    color: var(--secondary-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.contact-cta {
    text-align: center;
}

/* Projects Page Styles */
.projects-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.projects-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.projects-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.project {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.featured-project {
    border-left: 4px solid var(--accent-color);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-type {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.project-highlights {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
}

.project-highlights p {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.project-highlights ul {
    margin-left: 1rem;
    color: var(--text-light);
}

.project-highlights li {
    margin-bottom: 0.3rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.tech-tag {
    background-color: var(--success-color);
    color: var(--white-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.projects-footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

/* Section Styles */
section {
    padding: 40px 0;
}

section:not(.hero-section):not(.skills-preview-section) {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Form Styles */
form, .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

form label, .contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

form input[type="text"],
form input[type="email"],
form textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus,
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

form input[type="submit"],
.contact-form input[type="submit"] {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

form input[type="submit"]:hover,
.contact-form input[type="submit"]:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

footer p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

footer strong {
    color: #ffffff;
    font-weight: 700;
}

/* Contact Page Enhanced Styles */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.contact-method h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.phone-contact {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.phone-number {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.phone-number a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.phone-number a:hover {
    color: var(--primary-color);
}

.phone-note {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-contact {
    text-align: center;
}

.social-contact h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    color: var(--white-color);
}

.linkedin-btn {
    background-color: #0077b5;
}

.linkedin-btn:hover {
    background-color: #005885;
    transform: translateY(-2px);
}

.github-btn {
    background-color: #333;
}

.github-btn:hover {
    background-color: #24292e;
    transform: translateY(-2px);
}

.devpost-btn {
    background-color: #003e54;
}

.devpost-btn:hover {
    background-color: #002836;
    transform: translateY(-2px);
}

.contact-footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.contact-footer p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Enhanced Email Section Styles */
.email-options {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
}

.email-options h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.email-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    color: var(--white-color);
    font-size: 0.95rem;
}

.default-email {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.default-email:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.gmail-btn {
    background: linear-gradient(135deg, #ea4335, #d33b2c);
}

.gmail-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.outlook-btn {
    background: linear-gradient(135deg, #0078d4, #106ebe);
}

.outlook-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.custom-email-form {
    margin-bottom: 2rem;
}

.custom-email-form h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--text-light), #5a6268);
    color: var(--white-color);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.direct-contact {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.email-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.copy-btn {
    margin-left: 0.5rem;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    color: var(--text-color);
}

.copy-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

/* Responsive Design for Email Section */
@media (min-width: 768px) {
    .email-buttons {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .form-buttons {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .btn-primary {
        flex: 1;
        margin-right: 0.5rem;
    }
    
    .btn-secondary {
        flex: 1;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }
    
    .btn-secondary:last-child {
        margin-right: 0;
    }
}

/* Policy Pages Styles */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: var(--border-radius);
}

.policy-header h2 {
    color: var(--white-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.policy-intro {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    color: white;
}

.policy-summary {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: white;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--secondary-color);
}

.policy-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    font-size: 1.2em;
}

/* Info Grid for Privacy Policy */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.info-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Usage List */
.usage-list {
    margin-top: 1.5rem;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
}

.usage-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.usage-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Security Features */
.security-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.security-badge {
    background-color: var(--success-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Third Party Links */
.third-party-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.right-item {
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.right-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.right-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border-left-color: var(--accent-color);
}

.contact-section h3 {
    color: var(--white-color);
}

.contact-info {
    margin-top: 1rem;
}

.contact-info a {
    color: var(--blue-color);
    text-decoration: underline;
}

/* Terms of Service Specific Styles */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.terms-card {
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.terms-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.terms-card ul {
    list-style: none;
    padding: 0;
}

.terms-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.terms-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* IP Notice */
.ip-notice {
    text-align: center;
}

.ip-items {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.ip-badge {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Links Info */
.disclaimer-box {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    margin-top: 1rem;
}

.disclaimer-box ul {
    list-style: none;
    padding: 0;
}

.disclaimer-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.disclaimer-box li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Liability Section */
.liability-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.liability-item {
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.liability-item h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Contact Terms */
.contact-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-do, .contact-dont {
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.contact-do {
    background-color: rgba(39, 174, 96, 0.1);
    border: 2px solid var(--success-color);
}

.contact-dont {
    background-color: rgba(231, 76, 60, 0.1);
    border: 2px solid var(--accent-color);
}

.contact-do h4 {
    color: var(--success-color);
}

.contact-dont h4 {
    color: var(--accent-color);
}

.contact-do ul, .contact-dont ul {
    list-style: none;
    padding: 0;
}

.contact-do li, .contact-dont li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.contact-do li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.contact-dont li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Legal Info */
.legal-info {
    text-align: center;
}

.jurisdiction-note {
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    border-left: 4px solid var(--primary-color);
}

/* Policy Footer */
.policy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.policy-footer p {
    margin-bottom: 1rem;
    color: var(--white-color);
}

.policy-footer p:last-child {
    margin-bottom: 0;
}

.terms-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.terms-contact a {
    color: var(--white-color);
    text-decoration: underline;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 1rem;
    }
    
    .policy-header {
        padding: 1.5rem;
    }
    
    .policy-header h2 {
        font-size: 2rem;
    }
    
    .info-grid, .terms-grid, .liability-section {
        grid-template-columns: 1fr;
    }
    
    .usage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .usage-icon {
        align-self: center;
    }
    
    .security-features, .ip-items {
        justify-content: center;
    }
    
    .third-party-links {
        justify-content: center;
    }
    
    .contact-terms {
        grid-template-columns: 1fr;
    }
}

