* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white;
    font-family: 'Dancing Script', cursive;
    color: #2c3e50;
    line-height: 1.6;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.note-container {
    max-width: 600px;
    width: 100%;
    padding: 60px 40px;
    transform: rotate(-0.5deg);
    margin-top: 40px;
}

.title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 30px;
    transform: rotate(0.3deg);
    text-align: left;
}

.message {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 40px;
    transform: rotate(-0.2deg);
}

.signature {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: left;
    transform: rotate(0.4deg);
    color: #34495e;
}

.services-section {
    margin-top: 40px;
}

.services-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    text-decoration: underline;
    transform: rotate(-0.1deg);
}

.services-list {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.impacted {
    color: #e74c3c;
    margin-bottom: 15px;
    transform: rotate(0.2deg);
}

.not-impacted {
    color: #27ae60;
    transform: rotate(-0.3deg);
}

.service-item {
    margin: 8px 0;
    margin-left: 30px;
    position: relative;
}

.service-item:before {
    content: "•";
    position: absolute;
    left: -20px;
    font-size: 1.2em;
}

.ps {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 40px;
    font-style: italic;
    color: #7f8c8d;
    transform: rotate(0.2deg);
}

@media (max-width: 768px) {
    .note-container {
        padding: 40px 20px;
    }

    .title {
        font-size: 2.5rem;
    }

    .message {
        font-size: 1.5rem;
    }

    .signature {
        font-size: 1.7rem;
    }

    .services-title {
        font-size: 1.7rem;
    }

    .services-list {
        font-size: 1.3rem;
    }
}