/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    color: #7f8c8d;
    font-weight: 400;
}

/* Main Content Styles */
main {
    padding: 0 20px;
}

.policy-section {
    margin-bottom: 30px;
}

h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeaea;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

strong {
    color: #2c3e50;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #2c3e50;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #eaeaea;
    color: #7f8c8d;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header {
        padding: 20px 0;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    main {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}