/* ==================================================
   Attachment Hippo - Common Stylesheet
   Shared styles for all static pages
   ================================================== */

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

body {
    font-family: 'Inter', 'Funnel Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: rgb(244, 244, 246);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: rgb(244, 244, 246);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 204px;
    height: 79px;
    position: relative;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo-image {
    width: 79px;
    height: 79px;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-image img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: cover;
}

.logo-text {
    width: 123px;
    height: 47px;
    position: absolute;
    top: 19px;
    left: 82px;
}

.logo-text svg {
    width: 100%;
    height: 100%;
}

/* Navigation Styles */
.navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navigation nav {
    display: flex;
    gap: 34px;
}

.navigation nav a {
    font-family: "Funnel Display", sans-serif;
    font-size: 15px;
    line-height: 21px;
    text-align: center;
    color: rgb(12, 11, 14);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.navigation nav a:hover {
    opacity: 0.7;
}

/* CTA Button */
.cta-button {
    border: 1px solid #0c0b0e;
    border-radius: 4px;
    padding: 8px 16px;
    background: transparent;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: rgb(12, 11, 14);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: #0c0b0e;
    color: white;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #667eea;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul, ol {
    margin: 15px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
    text-align: justify;
}

/* Utility Boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.highlight-box h3 {
    margin-top: 0;
    color: #667eea;
}

.important-notice {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.1);
}

.important-notice h3 {
    margin-top: 0;
    color: #e74c3c;
}

.contact-info {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.1);
}

.contact-info h3 {
    margin-top: 0;
    color: #2ecc71;
}

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

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

.last-updated {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 16px 24px;
        flex-direction: column;
        gap: 20px;
    }

    .navigation {
        flex-direction: column;
        gap: 20px;
    }

    .navigation nav {
        gap: 20px;
    }

    .container {
        margin: 20px 10px;
        padding: 30px 15px;
        border-radius: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
        padding-left: 10px;
    }

    h3 {
        font-size: 1.1rem;
    }

    ul, ol {
        padding-left: 25px;
    }
}
