﻿/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body and container */
body {
    background-color: #f4f7fa;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0.5px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #777;
}

/* Section Titles */
h2 {
    font-size: 24px;
    color: #333;
    margin: 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e1e1e1;
}

/* Lists and paragraphs */
ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

    ul li {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 10px;
    }

strong {
    font-weight: bold;
}

a {
    color: #0066cc;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Footer and contact */
section ul {
    padding-left: 0;
}

ul li {
    margin: 8px 0;
}

    ul li a {
        color: #0066cc;
    }

        ul li a:hover {
            text-decoration: underline;
        }

.logo{
    width:200px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    .container {
        width: 95%;
        padding: 15px;
    }

    p {
        font-size: 13px;
    }

    ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .container {
        width: 100%;
        padding: 10px;
    }

    p {
        font-size: 12px;
    }

    ul li {
        font-size: 13px;
    }
}
