/* CSS reset*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/*
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

html, body {
  height: 100%;
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  background-color: #fafafa;
  color: #2a2a2a;
  line-height: 1.6;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
:root {
  --accent-red: #bd1e0c;
  --bg-light: #fafafa;
  --bg-input: #efefef;
  --bg-label: #cdcdcd;
  --text-main: #2a2a2a;
  --text-light: #666666;
  --border-light: #e0e0e0;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.5px;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-red);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}


.tarif {
  background-color: var(--bg-light);
  padding: 40px 30px;
}

.tarif-container {
  max-width: 750px;
  margin: 0 auto;
}

.tarif-introduction {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.tarif-grid {
  margin: 2rem 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
}

.pricing-table thead {
  background-color: var(--text-light);
  color: #ffffff;
}

.pricing-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-header {
  text-align: left;
}

.tarif-header {
  text-align: center;
  width: 25%;
}

.pricing-table tbody tr {
  border-top: 1px solid var(--border-light);
  transition: background-color 0.2s ease;
}

.pricing-table tbody tr:hover {
  background-color: #f9f9f9;
}

.category-cell {
  padding: 18px 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-main);
  border-right: 1px solid var(--border-light);
}

.tarif-cell {
  padding: 18px 15px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.tarif-cell:last-child {
  border-right: none;
}


.tarif-informations {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--accent-red);
}

.info-item {
  margin-bottom: 2.5rem;
  padding: 0;
}

.info-titre {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.info-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
  text-align: justify;
}


@media (max-width: 768px) {
  .tarif {
    padding: 30px 20px;
  }

  .tarif-container {
    max-width: 100%;
  }

  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  h1::after {
    width: 40px;
    margin-bottom: 1.5rem;
  }

  .pricing-table th,
  .category-cell,
  .tarif-cell {
    padding: 14px 12px;
    font-size: 0.85rem;
  }

  .tarif-header {
    width: auto;
  }
}

@media (max-width: 480px) {
  .tarif {
    padding: 20px 15px;
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  h1::after {
    width: 40px;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .pricing-table {
    font-size: 0.85rem;
  }

  .pricing-table th,
  .category-cell,
  .tarif-cell {
    padding: 12px 10px;
    font-size: 0.8rem;
  }

  .category-header {
    width: 35%;
  }

  .tarif-header {
    width: 21%;
  }
}
*/