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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 0;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-top: 20px;
}

main {
    padding: 0 20px;
    flex: 1;
}

.about {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2em;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.label {
    font-weight: bold;
}

/* Non-scrapable contact information using CSS pseudo-elements */
.phone::after {
    content: '+46 709 11 96 40';
    font-family: monospace;
    color: #2c3e50;
}

.email::after {
    content: 'johan@sourcehill.com';
    font-family: monospace;
    color: #2c3e50;
}

.policies {
    margin-bottom: 40px;
}

.accordion {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background-color: #f8f9fa;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #e9ecef;
}

.accordion-header h3 {
    color: #34495e;
    margin: 0;
    text-align: left;
}

.accordion-icon {
    font-size: 1.5em;
    color: #7f8c8d;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.show {
    max-height: 500px;
}

.accordion-body {
    padding: 20px;
    background-color: white;
}

.accordion-body p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

footer {
    margin: 60px -20px 0 -20px;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.separator {
    color: #cbd5e0;
    margin: 0 10px;
}

.copyright {
    color: #95a5a6;
    margin: 0;
    font-size: 0.85em;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .logo {
        max-width: 250px;
    }
    
    main {
        padding: 0 10px;
    }
    
    .policy {
        padding: 20px;
    }
    
    .separator {
        display: none;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
}