* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto",-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    min-height: 100vh;
}

.header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 40px;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.app-name {
    display: inline-flex;
    align-items: center;
    font-size: 28px;
    font-weight: 300;
    color: #333;
}

.app-name .hand {
    color: #333;
}

.app-name .lova {
    color: #ff4d8d;
    font-weight: 400;
}

.heart-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    fill: #ff4d8d;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin: 30px 0;
    text-align: center;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px 0;
}

h3 {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    margin: 20px 0 10px 0;
}

p, li {
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

ol, ul {
    margin-left: 30px;
}

/* App Links Navigation */
.app-links {
    background: linear-gradient(135deg, #ff4d8d 0%, #ff6ba6 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.3);
}

.app-links p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.app-links a {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    margin: 0 10px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.app-links a:hover {
    background-color: white;
    color: #ff4d8d;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sections with IDs for better accessibility */
section {
    margin: 30px 0;
}

.company-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.company-info p {
    margin: 5px 0;
    text-align: center;
}

.company-info address {
    font-style: normal;
    margin-top: 10px;
}

/* Contact section - professional styling */
.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #ff4d8d;
}

.contact-info p {
    margin: 10px 0;
    color: #555;
    text-align: left;
}

.contact-info a {
    color: #ff4d8d;
    font-weight: 500;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.last-update {
    text-align: right;
    font-size: 14px;
    color: #999;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.pink-accent {
    background: linear-gradient(135deg, #ff4d8d 0%, #ff6ba6 100%);
    height: 5px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    .app-name {
        font-size: 24px;
    }
    
    .app-links a {
        display: block;
        margin: 10px 0;
        font-size: 16px;
    }
}