:root {
    --primary-color: #0088b9;
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --accent-color: #0066a2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins;
/*    line-height: 1.6;*/
    color: var(--text-color);
    background-color: #ffffff;
}

.container {
   /* max-width: 1200px;
    margin: 0 auto;*/
    padding: 0;
}

.diagonal-header {
     background: #def9be;
    padding: 2rem 2rem;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: 3rem;
}

.diagonal-header h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-left: 2rem;
     font-family: Poppins;
      color: #11452E;
}

.diagonal-header p {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 2rem;
     font-family: Poppins;
      color: #11452E;
      margin-bottom: 15px;
}


.content {
    padding: 0 4rem 4rem;

}

.attention-box {
     background: #def9be;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid #11452E;
}

.terms-section {
    display: grid;
    gap: 2rem;
}

.term-item {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.term-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: #def9be;
    color: #11452E;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.term-item h2 {
    color: #11452E;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
     font-family: Poppins;
}

.term-item ul {
    list-style-position: inside;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.term-item li {
    margin-bottom: 0.5rem;
     font-family: Poppins;
}

.term-item p {
    margin-bottom: 1rem;
     font-family: Poppins;
}

.term-item p:last-child {
    margin-bottom: 0;
}

.disclaimer-box {
    margin-top: 3rem;
    padding: 2rem;
    background-color:#def9be ;
    border-radius: 8px;
    border: 1px solid #11452E;
}

.disclaimer-box h2 {
    color: #11452E;
    margin-bottom: 1rem;
     font-family: Poppins;
}

.copyright {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

.agreement-note {
    margin-top: 1rem;
    font-weight: 500;
     font-family: Poppins;
}

@media (max-width: 768px) {
    .diagonal-header {
        padding: 2rem 1rem;
    }

    .diagonal-header h1 {
        font-size: 2rem;
        margin-left: 1rem;
    }

    .content {
        padding: 0 1rem 2rem;
    }

    .term-item {
        padding: 1.5rem;
    }
    .diagonal-header p {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 1rem;
     font-family: Poppins;
      color: #11452E;
      margin-bottom: 15px;
}
}